what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / karna
answer is 1.because it counts how many numbers are given as input
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What is the general form of a C program?
Differentiate between declaring a variable and defining a variable?
Write a program to print "hello world" without using a semicolon?
Explain how do you search data in a data file using random access method?
What is double pointer?
Write a program to generate the Fibinocci Series
What is the purpose of sprintf() function?
State two uses of pointers in C?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
What is linear search?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is extern variable in c with example?
Explain main function in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Explain enumerated types in c language?