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
How can I use a preprocessorif expression to ?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is a program flowchart and how does it help in writing a program?
How do you determine whether to use a stream function or a low-level function?
what is different between auto and local static? why should we use local static?
Why functions are used in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Explain how do you override a defined macro?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is the difference between exit() and _exit() function in c?
What is header file definition?
What is variable and explain rules to declare variable in c?
What is d scanf?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What is double pointer in c?