what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / rampoojan gupta
no out put
| Is This Answer Correct ? | 1 Yes | 11 No |
Post New Answer View All Answers
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
How will you divide two numbers in a MACRO?
What does sizeof return c?
How can you avoid including a header more than once?
Describe dynamic data structure in c programming language?
What is scope rule of function in c?
Can we access array using pointer in c language?
Why is it important to memset a variable, immediately after allocating memory to it ?
Can a file other than a .h file be included with #include?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
Explain how can I right-justify a string?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is realloc in c?
How can I remove the trailing spaces from a string?