C Program To Read Three Numbers And Print The Biggest Of Given Three Numbers. # include <stdio.h> # include <conio.h> main( ) { int a, b, c, big = 0; clrscr( ); printf("Enter Value For A:"); scanf("%d",& a); printf("Enter Value For B:"); scanf("%d",& b); print("Enter Value For C:"); scanf("%d",& c); if (a > big) big = a ; if(b > big) big = b; if (c > big) big = c; printf (“Biggest Of Above Given Three Number Is %d”, big) getch( ); } C Program To Find Whether The Given Number Is Even Or Odd Using Modulus Operator. # include <stdio.h> # include <conio.h> main() { int n, r; clrscr(); printf("Enter a ...
All HR and Technical interview questions with answers for freshers and experienced professional. It helps job seekers who are about to attend interviews.