Answer Posted / guest
top of the page
Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
#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); }
What is wrong with this initialization?
What is a sequential access file?
Create a simple code fragment that will swap the values of two variables num1 and num2.
What is the purpose of 'register' keyword in c language?
Does c have function or method?
What is a program?
What is the easiest sorting method to use?
Explain what is the benefit of using an enum rather than a #define constant?
By using C language input a date into it and if it is right?
Explain #pragma statements.
formula to convert 2500mmh2o into m3/hr
how can f be used for both float and double arguments in printf? Are not they different types?
What are volatile variables in c?
What are compound statements?