Computer Science, asked by aatif5, 1 year ago

Write a C program to find five patient fever records time to time using array


CyberAkay: Atleast you can thank me for answering your question

Answers

Answered by CyberAkay
1
Dear user,
Kindly mark the answer as brainliest if you find it useful.
Here's I am sharing a C++ program. You can make nessecaary correction for C language. The main thing is that you should understand the logic.
#include<iostream.h>
void main( )
{
cout<<"Welcome to Patient fever monitor system";
int fever[5];
for(int I=0;I<=5;I++)
{
cout<<"Enter temperature for patient"<<I+1<<":";
cin>>fever[I];
}
}
Similar questions