what is the significance of static storage class specifier?
No Answer is Posted For this Question
Be the First to Post Answer
What is sizeof return in c?
What is ambagious result in C? explain with an example.
How can I list all of the predefined identifiers?
What are the functions to open and close file in c language?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What does %d do?
Is c programming hard?
What are the uses of pre-processor directives?
What is equivalent to ++i+++j?
Can we access array using pointer in c language?
Why do we use namespace feature?
#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); }