Question
following commands are used to run and if myfile does not exist?
gcc -o test test.c
./test > myfile
#include <stdio.h>
int main(int argc, char **argv)
{
char c = 'd';
putchar(c);
printf(" %d\n", argc);
}
a.
d 2 in myfile
b.
d 1 in myfile
c.
Depends on the system
d.
Depends on the standard
Posted under C Programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of this C code if following commands are used to run and if myfile does not exist? gcc -o test test.c ./test > myfile
Similar Questions
Discover Related MCQs
Q. The statement prog <infile causes
View solution
Q. What is the difference between %e and %g?
View solution
Q. Escape sequences are prefixed with
View solution
Q. What is the purpose of sprintf?
View solution
Q. The syntax to print a % using printf statement can be done by
View solution
Q. What does this statement printf(“%10s”, state); means?
View solution
Q. What are the Properties of first argument of a printf functions?
View solution
Q. Which of the following function with ellipsis are illegal?
View solution
Q. Which of the following data-types are promoted when used as a parameter for an ellipsis?
View solution
Q. Which header file includes a function for variable number of arguments?
View solution
Q. Which of the following macro extracts an argument from the variable argument list (i.e ellipsis) and advance the pointer to the next argument?
View solution
Q. The type va_list is used in an argument list
View solution
Q. Each call of va_arg
View solution
Q. The standard header _______ is used for variable list arguments (…) in C.
View solution
Q. va_end does whatever
View solution
Q. Which of the following is NOT a delimiter for an input in scanf?
View solution
Q. If the conversion characters of int d, i, o, u and x are preceded by h, it indicates?
View solution
Q. Which of the following doesn’t require an & for the input in scanf?
View solution
Q. Which of the following is an invalid method for input?
View solution
Q. Which of the following represents the function for scanf?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!