#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
Explain what is the advantage of a random access file?
What is a wrapper function in c?
What does *p++ do?
What is the general form of a C program?
What is the difference between the expression “++a” and “a++”?
What's the best way of making my program efficient?
What is a structure and why it is used?
Should I learn c before c++?
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
Define Array of pointers.
Explain void pointer?
What is meant by gets in c?
What is scope rule of function in c?
Can I initialize unions?
In a switch statement, what will happen if a break statement is omitted?