what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / satish kondapalli
2 2
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What are linked lists in c?
What is void pointers in c?
What are the c keywords?
What is the role of && operator in a program code?
what are the 10 different models of writing an addition program in C language?
Explain about block scope in c?
What is the best way to comment out a section of code that contains comments?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain what standard functions are available to manipulate strings?
What oops means?
What is the difference between scanf and fscanf?
What is a stream water?
Explain what is the difference between functions abs() and fabs()?