Explain the use of #pragma exit?
No Answer is Posted For this Question
Be the First to Post Answer
What are preprocessor directives in c?
if we take a number as a char then can we manipulate(add, subtract) on this number
Can stdout be forced to print somewhere other than the screen?
What are identifiers and keywords in 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); }
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
What is the difference between array and structure in c?
How can you dynamically allocate memory in C?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
How is = symbol different from == symbol in c programming?
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
Is malloc memset faster than calloc?