what is the function of .h in #include<stdio.h> in c ?
Answer Posted / nitesh vashist
.h is only giving indication that it is a header file.
only two types of files in c .c and .h.
if we copy stdio.h file as stdio then it will work we can
use stdio file instead of stdio.h. it will work definitely...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List some of the static data structures in C?
Write a program that accept anumber in words
What is dynamic memory allocation?
What is a static function in c?
What is optimization in c?
What is the use of bitwise operator?
Do you know what are the properties of union in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
When c language was developed?
What are the two types of structure?
When can a far pointer be used?
How do you do dynamic memory allocation in C applications?
What is exit() function?
What is call by reference in functions?