what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / monish
The user will enter two nos. The output will be- 2 <First
no. entered>
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
What library is sizeof in c?
How do I get an accurate error status return from system on ms-dos?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
Differentiate between #include<...> and #include '...'
Why is #define used?
Can 'this' pointer by used in the constructor?
What is the ANSI C Standard?
Explain spaghetti programming?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
How do you use a 'Local Block'?
What is the difference between far and near in c?
What does p mean in physics?
What is the right way to use errno?
difference between native and cross compilers