what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / nitin sharma
ans 1 2
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
What are pointers? Why are they used?
how do you programme Carrier Sense Multiple Access
Explain c preprocessor?
How do I use strcmp?
What are the advantages and disadvantages of c language?
How do I round numbers?
What are file streams?
What is stack in c?
Explain can static variables be declared in a header file?
Combinations of fibanocci prime series
What is cohesion and coupling in c?
Tell me when is a void pointer used?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Which function in C can be used to append a string to another string?