FORMATTED INPUT/OUTPUT functions are
a) scanf() and printf()
b) gets() and puts()
c) getchar() and putchar()
d) all the above
How many types of functions are there in c?
What is the difference between char array and char pointer?
write a program to print calender using for loop.
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
How many identifiers are there in c?
Explain the red-black trees?
Write a program to find minimum between three no.s whithout using comparison operator.
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
Can we declare function inside main?
What is the main differences between C and Embedded C?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
what does exit() do?