I heard that you have to include stdio.h before calling printf. Why?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
How will you allocate memory to double a pointer?
How can I direct output to the printer?
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
why do we use # in c-language?
Explain enumerated types.
What is type qualifiers?
What is the meaning of 2d in c?
the data type used for unlimited value in c and how to do this program
What is the OOPs concept?