What is c standard library?
No Answer is Posted For this Question
Be the First to Post Answer
What is calloc()?
Should a function contain a return statement if it does not return a value?
LOGIC OF Bodmas?
What are external variables in c?
Is c procedural or object oriented?
what are the difference between ANSI C and Let Us c and Turbo C
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
Is multithreading possible in c?
Can 'this' pointer by used in the constructor?
What is auto keyword in c?
Two's compliment of -5
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }