what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / prashant sharma
first the computer will take the two values as inputs &
then will show junk value
Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
How to throw some light on the b tree?
Explain what is the general form of a c program?
what will be maximum number of comparisons when number of elements are given?
What are the different types of linkage exist in c?
Is exit(status) truly equivalent to returning the same status from main?
What is a good data structure to use for storing lines of text?
Define circular linked list.
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Why c is a mother language?
What is openmp in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
Compare array data type to pointer data type
Can you please explain the difference between exit() and _exit() function?
Can stdout be forced to print somewhere other than the screen?
What is a structural principle?