#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 / muthuveerappan
3
| Is This Answer Correct ? | 7 Yes | 5 No |
Post New Answer View All Answers
Explain function?
Explain how are 16- and 32-bit numbers stored?
what are # pragma staments?
What is define c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is zero based addressing?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Explain how can you determine the size of an allocated portion of memory?
List out few of the applications that make use of Multilinked Structures?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
Do you know the purpose of 'register' keyword?
What are examples of structures?
How can variables be characterized?
What do you mean by invalid pointer arithmetic?