what is the output of the C program.?
#include<stdio.h>
int main()
{
    float marks[3]={90.5,92.5,96.5};
    int a=0;
    while(a<3){
        printf("%.f,",marks[a]);
        a++;
    }
}

Posted on by