Answer Posted / jayanthi
Dennis MacAlistair Ritchie
| Is This Answer Correct ? | 4 Yes | 0 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); }
write a program to print data of 5 five students with structures?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
How many header files are in c?
How can you increase the size of a statically allocated array?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is meant by gets in c?
Explain union.
What is a global variable in c?
How do you define CONSTANT in C?
What should malloc(0) do?
I heard that you have to include stdio.h before calling printf. Why?
How do you sort filenames in a directory?
Does sprintf put null character?
What is a example of a variable?