What is boolean in c?
No Answer is Posted For this Question
Be the First to Post Answer
provide an example of the Group by clause, when would you use this clause
Write a program to print ASCII code for a given digit.
What are types of functions?
Can a pointer be null?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
What are the features of c language?
Why c is procedure oriented?
What is an lvalue and an rvalue?
which type of aspect you want from the student.
Explain #pragma in C.
What is the best way of making my program efficient?
#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); }