what is the function of .h in #include<stdio.h> in c ?
Answer Posted / ashu
it stnds for standard input output header file. it is a
processor directive in c . it include all input output
function in c . wth the help of header file vwe know which
function where use in program
------ - in my view ------------
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is main function in c?
Explain what standard functions are available to manipulate strings?
Explain modulus operator.
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is the c value paradox and how is it explained?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
How can you determine the size of an allocated portion of memory?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is a MAC Address?
What is typedef struct in c?
What is sizeof c?
Is exit(status) truly equivalent to returning the same status from main?
Explain union. What are its advantages?