Answer Posted / jyoti
header file is a preprocessor directive that contains all
the functions thet we have to use in our program and has to
be declared before the main function.
ex: headerfile <stdio.h> include functions such as printf()
and scanf() that puts the output and gets the input
repectively
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
How do you print only part of a string?
Tell me what is the purpose of 'register' keyword in c language?
Find MAXIMUM of three distinct integers using a single C statement
Explain what are the advantages and disadvantages of a heap?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Do you know what are the properties of union in c?
What is the difference between constant pointer and constant variable?
Can we use any name in place of argv and argc as command line arguments?
Write a program to print fibonacci series without using recursion?
How can I discover how many arguments a function was actually called with?
Do you know what are bitwise shift operators in c programming?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is multidimensional arrays
What is const keyword in c?