Skip to content

Commit db938eb

Browse files
committed
Add simple C program to check student's grade
This commit introduces a basic C program that checks a student's grade and prints "Passed" if the grade is greater than or equal to 60, and "Failed" otherwise.
1 parent 3092d43 commit db938eb

File tree

1 file changed

+22
-0
lines changed
  • Structured Task Deveolpment in C

1 file changed

+22
-0
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#include <stdio.h>
2+
3+
int main()
4+
{
5+
// Assume grade is a variable representing a student's score
6+
7+
int grade = 75; // You can replace this with the actual grade value
8+
9+
// Check if the grade is greater than or equal to 60
10+
if (grade >= 60)
11+
{
12+
// If true, print "Passed"
13+
printf("Passed\n");
14+
} // end if
15+
else
16+
{
17+
// If false, print "Failed"
18+
printf("Failed\n");
19+
} // end else
20+
21+
return 0;
22+
}

0 commit comments

Comments
 (0)