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?
What is string length in c?
What is structure in c definition?
say the following declaration is correct nr not. int b=a,n=0;
What is data types?
Is there a way to jump out of a function or functions?
What is sizeof array in c?
Explain how can I right-justify a string?
what is the hexidecimal number of 4100?
Why is #define used?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
how many header file is in C language ?
44 Answers College School Exams Tests, CTS, IBM, IMS, Infosys, ME, Sign Solutions, Wipro, XVT,
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;