Where are the auto variables stored?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program in C to convert date displayed in gregorian to julian date
Is main is a keyword in c?
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
How can I find out the size of a file, prior to reading it in?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
Are c and c++ the same?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What are header files and what are its uses in C programming?
64/square(4)
out put of printf(ā%dā,printf(ram));
Is c is a high level language?
What is the difference between the expression “++a” and “a++”?