what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / hari
without entering the values the output will not be
displayed.
no output
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Is return a keyword in c?
Write a program to reverse a string.
Explain how do you print only part of a string?
Write a program to reverse a linked list in c.
How can I convert a number to a string?
What is the difference between local variable and global variable in c?
Explain bit masking in c?
what are the advantages of a macro over a function?
What is difference between union and structure in c?
Why c is a procedural language?
Define Array of pointers.
What is multidimensional arrays
int i=10; printf("%d %d %d", i, i=20, i);
Explain the term printf() and scanf() used in c language?