what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / tasneemuddin
The result of this program will be:
you have to enter two int numbers
output : 2 <the last number entered>
| Is This Answer Correct ? | 12 Yes | 6 No |
Post New Answer View All Answers
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Why main function is special give two reasons?
How does struct work in c?
using only #include
Is c still relevant?
What are variables c?
What does double pointer mean in c?
Explain what are multibyte characters?
develop algorithms to add polynomials (i) in one variable
What is the use of a static variable in c?
Can you define which header file to include at compile time?
With the help of using classes, write a program to add two numbers.
How many main () function we can have in a project?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
What is logical error?