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

Flowchart in Programming प्रोग्रामिंग में फ्लोचार्ट

A flowchart is a graphical representation of an algorithm or program logic. It uses different symbols and arrows to represent the sequence o...