Sponsored Links

Interview Questions



INTERVIEW QUESTIONS C C BASICS DETAILS

Question: How can C programs run without header files?

Answer: c programming run without header file
write example given below.
void main()
{
clrscr();
printf("hello");
getch();
}

Category C Basics Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.3) By 8604 users
Added on 9/22/2013
Views 68904
Rate it!

Question: How can C programs run without header files?

Answer:

c programming run without header file
write example given below.
void main()
{
clrscr();
printf("hello");
getch();
} Source: CoolInterview.com

Answered by: sujit kumar rout | Date: 9/27/2008 | Contact sujit kumar rout Contact sujit kumar rout

If we save our program with .c extention before compiling it, the compiler with automatically include the header files. for eg-
First we save our program with sum.c and then complile it. It will not show any error. Source: CoolInterview.com

Answered by: Akansh Tayal | Date: 10/11/2008 | Contact Akansh Tayal Contact Akansh Tayal

After compile one time source code with the help of header files then we can again run that prog. without using header files. Source: CoolInterview.com

Answered by: AVNEET SINGH | Date: 10/29/2008 | Contact AVNEET SINGH Contact AVNEET SINGH

You cannot run a C program without header files. By default some compilers include header files like stdio.h but in the above program, functions getch() and clrscr() use header files which should be mentioned by the programmer. If the above program should run then the programmer should implement the functions inside the code. Source: CoolInterview.com

Answered by: Coolskulll | Date: 12/14/2008 | Contact Coolskulll Contact Coolskulll

The above program will not work.because the getch() is declared in conio.h and printf() require stdio.h .without header files we can't run this program. Source: CoolInterview.com

Answered by: Nitin Yadav | Date: 2/4/2009 | Contact Nitin Yadav Contact Nitin Yadav

yes a c program runs without including header files..above program would run correctly because by default the c complier includes some header file..so clrscr() and getch() in above program would work without header files..

but in case of c++ it is not so...
there we have to include header files Source: CoolInterview.com

Answered by: shreepriya | Date: 8/17/2009 | Contact shreepriya Contact shreepriya

we can run C program without includeing header file.
for this after writng code we will have to save the program
after saving the program if we excute it program will work as the compiler will include header file by default.
it will also work in case of c++
eg
void main()
{
int a,b,c;
printf("Enter the values of a and b ");
scanf("%d %d",&a,&b);
c= a+b;
c++
printf("The value is %d",c);
} Source: CoolInterview.com

Answered by: Ruchi | Date: 1/1/2010 | Contact Ruchi Contact Ruchi

you can run a c program without header files like stdio.h and
conio.h.It is not necessary to save them befor running.
In c++ each header file must be provide by the user execpt the one
below:
main()
{int a,b;
}

if you try to add getch() with out
adding conio.h it will show you error Source: CoolInterview.com

Answered by: Neeraj yadav | Date: 2/19/2010 | Contact Neeraj yadav Contact Neeraj yadav

In case of c ,, yeah its possible...
The nly thing id u hv to save the program with extension .c, then n only then it woll include some standard header files... lik stdio.h,, conio.h,,, Source: CoolInterview.com

Answered by: Ravi Vaghanani | Date: 2/25/2010 | Contact Ravi Vaghanani Contact Ravi Vaghanani

yes if we save our proram with .c then its include bydefault stdio.h header file so its works as hiddenly Source: CoolInterview.com

Answered by: priyankit | Date: 4/19/2010 | Contact priyankit Contact priyankit

only printf and scanf functions work. Does any other function work without adding the header file? Source: CoolInterview.com

Answered by: MOHIT PRADHAN | Date: 7/5/2010 | Contact MOHIT PRADHAN Contact MOHIT PRADHAN

The above program will not work.because the getch() Funtion is declared in conio.h and printf()Function is require stdio.h .without header files we can't run this program.


Source: CoolInterview.com

Answered by: Ajay sachan | Date: 8/24/2010 | Contact Ajay sachan Contact Ajay sachan

The above program will not work.because the getch() function is declared in conio.h and printf() function require stdio.h .without header files we can't run this program.

Source: CoolInterview.com

Answered by: Ajay Sachan | Date: 8/24/2010 | Contact Ajay Sachan Contact Ajay Sachan

The above program will not work.because the getch()Function is declared in conio.h and printf() Function require stdio.h .without header files we can't run this program.


Source: CoolInterview.com

Answered by: Ajay Sachan | Date: 8/24/2010 | Contact Ajay Sachan Contact Ajay Sachan

This program will not be even compile but if you want to get the output of it so just save it with [.c] extension then it'll compile as well as give you output. Source: CoolInterview.com

Answered by: Dipanshu | Date: 9/10/2010 | Contact Dipanshu Contact Dipanshu


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
What is c graphics?
View Answer
write a program for printing when i press a key next to the letter in the alphabetical order can be printed
View Answer
how to create relation calculator program using c language
View Answer
how to create love flames program using c language
View Answer
Can anyone please tell me about a website from which I could install Turbo C (compiler) for free??
View Answer
What is the use of semicolon at the end of every statement?
View Answer
What are the packages in c?
View Answer
What is object file? How can you access object file?
View Answer
Is there anything you can do in C++ that you cannot do in C ?
View Answer
What is an abstract base class?
View Answer
What is the difference between compile time error and run time error?
View Answer
What is the difference between #include <file> and #include �file�
View Answer
When we access the integer and the character variables without declaring them in program?and Why?
View Answer
Can we execute printf statement without using semicolan?
View Answer
How to perform addition,subtraction of 2 numbers without using addition and subtraction operators?
View Answer
What are the applications and advantages of C-language?
View Answer
Define structural language and procedural language?
View Answer
how do i get started for any project?
View Answer
How to write a C program for displaying a sentence without output command?
View Answer
How to print value without using any output statements?
View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All C Basics Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2025 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions