#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 / aswanth
-1
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
In which language linux is written?
What is wrong with this code?
What are the applications of c language?
Are pointers really faster than arrays?
What will the preprocessor do for a program?
What does s c mean on snapchat?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is the difference between procedural and functional programming?
What is the purpose of the statement: strcat (S2, S1)?
why return type of main is not necessary in linux
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Is linux written in c?
Differentiate fundamental data types and derived data types in C.
What is meant by recursion?
What was noalias and what ever happened to it?