how many header file is in C language ?
Answer Posted / venky
iso c standard has 24 hederfiles...
| Is This Answer Correct ? | 20 Yes | 13 No |
Post New Answer View All Answers
What is wrong in this statement? scanf(“%d”,whatnumber);
Do you know what are the properties of union in c?
What is c preprocessor mean?
Mention four important string handling functions in c languages .
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.
What is dynamic dispatch in c++?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Can an array be an Ivalue?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Explain the array representation of a binary tree in C.
What does malloc () calloc () realloc () free () do?
What is difference between constant pointer and constant variable?
Describe newline escape sequence with a sample program?
Are enumerations really portable?