WHAT IS HEADER?
Answers were Sorted based on User's Feedback
Answer / pavan bhalot
header file is that file in which predefines all those
function those are useig in program.like scanf,printf, getch
etc.
| Is This Answer Correct ? | 62 Yes | 4 No |
Answer / mohit chawla
Header is preprocessor directive that is used to include some
predefind function and properties declared in some predefined
header files
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / nagendra reddy
The Headers property is a collection of name/value pairs that
contain the HTTP header values returned with the response.
Common header information returned from the Internet resource
is exposed as properties of the HttpWebResponse class.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
Include directory is special directory which content all the
header files of c language. Extension of header files in c
language is header. All header files only keep declaration of
functions, declaration of data type and micro constants. Body
of function i.e. function definition is not written in the
header files. Hence no one can get source code of function
like printf, clrscr etc. All the function declaration in
header file is extern. Since visibility of extern data type is
whole the program. and other file can also access such
function. Body of function of header file is supplied at the
time of linking in header file.
| Is This Answer Correct ? | 1 Yes | 0 No |
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is the difference between exit() and _exit()?
What are the different types of C instructions?
print a "hello" word without using printf n puts in c language
What are identifiers c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
define string ?
What is the purpose of 'register' keyword in c language?
What is unsigned int in c?
multiple of 9 without useing +,* oprator
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above