what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / kamal
scanf() returns integer value for number sucessful entry taken.
Due to this cause of taking integer value at address 10 it
will print 1 otherwise 0;
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What is the size of enum in c?
What are directives in c?
program to convert a integer to string in c language'
What is the size of enum in bytes?
What is extern c used for?
Is null always equal to 0(zero)?
What is the best organizational structure?
How can I ensure that integer arithmetic doesnt overflow?
What are the advantages of external class?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
How do you search data in a data file using random access method?
What is the g value paradox?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
Why should I use standard library functions instead of writing my own?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list