what will be the output of "printf("%d%d",scanf("%d%
d",&a,&b))".provide an explation regarding the question
Answer Posted / nilambuja
the output will be what value of a and b...
| Is This Answer Correct ? | 2 Yes | 8 No |
Post New Answer View All Answers
What is meant by realloc()?
What are the advantages of c preprocessor?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
How to compare array with pointer in c?
Is it better to use malloc() or calloc()?
#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); }
Explain how do you list a file’s date and time?
What are the advantages and disadvantages of c language?
How can you pass an array to a function by value?
What is typedef example?
What are high level languages like C and FORTRAN also known as?
write a program to create a sparse matrix using dynamic memory allocation.
Who invented b language?
What are the advantages of using macro in c language?