Main must be written as
a.the first function in the program
b.Second function in the program
c.Last function in the program
d.any where in the program
Answer Posted / mathan
a.the first functioon in the program
| Is This Answer Correct ? | 3 Yes | 24 No |
Post New Answer View All Answers
What is putchar() function?
What is the auto keyword good for?
What is && in c programming?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
Explain the term printf() and scanf() used in c language?
What is ctrl c called?
Is using exit() the same as using return?
What is identifiers in c with examples?
What is the difference between test design and test case design?
What are structure members?
Explain void pointer?
Can i use “int” data type to store the value 32768? Why?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
Explain can static variables be declared in a header file?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above