what is the function of .h in #include<stdio.h> in c ?
Answer Posted / 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 |
Post New Answer View All Answers
Is null always equal to 0(zero)?
What are the different categories of functions in c?
Explain what are header files and explain what are its uses in c programming?
What is meant by type casting?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics
Which driver is a pure java driver
What are the 5 types of inheritance in c ++?
When should a far pointer be used?
In a switch statement, explain what will happen if a break statement is omitted?
How #define works?
How do I round numbers?
What is structure padding in c?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
What is function definition in c?