9.how do you write a function that takes a variable number
of arguments? What is the prototype of printf () function?
10.How do you access command-line arguments?
11.what does ‘#include<stdio.h>’ mean?
12.what is the difference between #include<> and #include”…”?
13.what are # pragma staments?
14.what is the most appropriate way to write a
multi-statement macro?
Answer Posted / sumati
9. By using default arguments, we can write a function that
takes a variable number of arguments.
10. By default, 2 arguments are passed to main function..
One is the count that contains number of arguments + 1.
1 is for the program name.
Second argument is the array of arguments...with prgram name
at the first index i.e. [0] and the size of array is count-1.
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what type of questions arrive in interview over c programming?
What are the different types of endless loops?
Can the curly brackets { } be used to enclose a single line of code?
What are the usage of pointer in c?
Explain how can I remove the trailing spaces from a string?
What is a #include preprocessor?
what do you mean by enumeration constant?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What does char * * argv mean in c?
What header files do I need in order to define the standard library functions I use?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
What are header files in c?
int far *near * p; means
code for replace tabs with equivalent number of blanks