how many key words availabel in c
a) 28
b) 31
c) 32
No Answer is Posted For this Question
Be the First to Post Answer
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How can you check to see whether a symbol is defined?
What are logical errors and how does it differ from syntax errors?
What is a dynamic array in c?
all c language question
without using control structures and control structures find the max and min of given 2 nos
Can you write the function prototype, definition and mention the other requirements.
In which language linux is written?
wap in c to accept a number display the total count of digit
what is software?
Explain #pragma statements.