C program to find first division of student using if block.

#include<stdio.h>
#include<conio.h>
void main(){
float per;
clrscr();
printf("Enter Percentage of marks/ n");
scanf("%f,&per");
if(per>=60)
printf ("first devision/n");
getch ();
}

No comments:

Post a Comment