shishantpandeyAug 6, 20221 min readCHEEK GRADE IN C PROGRAM#include <stdio.h> int main() { /*here is a simply code that tell your grade accordinh to your number c=lees than 30 b=more than or equal...
shishantpandeyAug 6, 20221 min readHOW TO FIND ARMSTRONG NUMBER#include <stdio.h> #include <math.h> int main() { // An Armstrong number is a n digit number, which is equal to the sum of the nth...
shishantpandeyAug 5, 20221 min readEVEN OR ODD IN C #include <stdio.h> int main() { int a = 24; int b = 0; printf("entre any digit\n"); scanf("%d", &a); if (a % 2 == 0) { printf("it is an...