What is the output of printf("%d")?

Answer Posted / hardik jasani

void main()
{
printf("%d");
}
getch();

Output:0

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends

1864


What is an iterator?

690


Is java the same as c++?

547


How are Structure passing and returning implemented by the compiler?

599


Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);

618






What are the various storage classes in C++?

652


Explain static and dynamic memory allocation with an example each.

646


What is a map in c++?

584


Is c++ faster than c?

596


Explain the difference between c++ and java.

646


What is new in c++?

580


write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters

4853


What does return 0 do in c++?

580


Do the names of parameters have to agree in the prototype, definition, and call to the function?

599


What is meant by entry controlled loop? What all C++ loops are exit controlled?

568