what is the output of
printf("%d",(scanf("%d",10));

Answer Posted / arti

tihis will return an runtime error as no address is pass in
scanf where value is to assign which we get as user input
through scanf().

Is This Answer Correct ?    3 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the value of a[3] if integer a[] = {5,4,3,2,1}?

657


What is the benefit of using an enum rather than a #define constant?

645


What are the loops in c?

588


Why do we need arrays in c?

571


Write the test cases for checking a variable having value in range -10.0 to +10.0?

1810






What is the right way to use errno?

610


Tell me can the size of an array be declared at runtime?

589


What is modeling?

634


Are the variables argc and argv are always local to main?

562


How can I get the current date or time of day in a c program?

644


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

1483


What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers

667


What is wrong with this program statement? void = 10;

808


What are the properties of union in c?

577


write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)

1617