what is the function of .h in #include<stdio.h> in c ?
Answer Posted / moolshankar
.his the extencation of the header file .h indicvates
that its a header file
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
Explain null pointer.
Why can arithmetic operations not be performed on void pointers?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Why is c called a mid-level programming language?
What does struct node * mean?
What is the difference between ++a and a++?
Explain continue keyword in c
Do you know the difference between exit() and _exit() function in c?
Explain built-in function?
Explain what is the benefit of using an enum rather than a #define constant?
Can include files be nested?
write a program to find out prime number using sieve case?
Explain void pointer?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
Can you write the function prototype, definition and mention the other requirements.