what is the function of .h in #include<stdio.h> in c ?
Answers were Sorted based on User's Feedback
Answer / bhanudas
#include<stdio.h> mean standered input / output header
file.
This preprocessor directive tell the compiler I am
including my program in your header file.
It also called as preprocessor command or header file .
| Is This Answer Correct ? | 1 Yes | 2 No |
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
What is the difference between if else and switchstatement
What does sizeof return c?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
What are c preprocessors?
Explain union. What are its advantages?
How can I automatically locate a programs configuration files in the same directory as the executable?
What does double pointer mean in c?
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
What is the difference between exit() and _exit()?
Can main () be called recursively?