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 / vid
145
1!=1,4!=24,5!=120
1+24+120=145
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is function pointer c?
What is time complexity c?
What is wrong with this program statement? void = 10;
Explain what is the advantage of a random access file?
Explain how do you list files in a directory?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Create a simple code fragment that will swap the values of two variables num1 and num2.
Explain pointers in c programming?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Tell me what are bitwise shift operators?
What the different types of arrays in c?
What is static identifier?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)