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
What is %lu in c?
What is double pointer?
Differentiate between a for loop and a while loop? What are it uses?
Explain what are the standard predefined macros?
How do c compilers work?
What is the purpose of void pointer?
What is spaghetti programming?
What is C language ?
What is a pointer and how it is initialized?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Discuss the function of conditional operator, size of operator and comma operator with examples.
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
Explain the meaning of keyword 'extern' in a function declaration.
What is file in c preprocessor?
Do you know the difference between exit() and _exit() function in c?