Is c compiled or interpreted?
No Answer is Posted For this Question
Be the First to Post Answer
What is string constants?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf(i); }
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
Explain modulus operator. What are the restrictions of a modulus operator?
To find whether a number is even or odd without using any conditional operator??
12 Answers College School Exams Tests, IBM,
Is c still used?
What are global variables?
What do you mean by invalid pointer arithmetic?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is function definition in c?
What is difference between scanf and gets?