In C language what is a 'dangling pointer'?
No Answer is Posted For this Question
Be the First to Post Answer
write a C code To reverse a linked list
Why isnt there a numbered, multi-level break statement to break out
What is the modulus operator?
Explain what is the benefit of using const for declaring constants?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
how would a 4*3 array A[4][3] stored in Row Major Order?
How is actual parameter different from the formal parameter?
Explain c preprocessor?
Fifty minutes ago if it was four times as many mints past 3 o clock. how many minutes is it to six o'clock n how....?????
triangle number finding program...
code for reverse alternate words from astring
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }