#include<stdio.h> void main() { int a=10,b=20,c=30;
printf("%d",scanf("%d%d%d",&a,&b,&c)); }
what is the output for this?
Answer Posted / magesh
0
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Do variables need to be initialized?
using for loop sum 2 number of any 4 digit number in c language
Why doesnt the call scanf work?
What are the applications of c language?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What does c mean in standard form?
Explain about the functions strcat() and strcmp()?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is array of structure in c?
Write a program to know whether the input number is an armstrong number.
How are strings stored in c?
What is the right way to use errno?
What is the advantage of a random access file?
What does stand for?
What is use of integral promotions in c?