#include<stdio.h>
{
printf("Hello");
}
how compile time affects when we add additional header file
<conio.h>.



#include<stdio.h> { printf("Hello"); } how compile time affects when we add ad..

Answer / Neeraj Rastogi

Adding additional header file <conio.h> may cause compile errors if your compiler does not support it or the library is not installed on the system. In case of Microsoft Compiler, conio.h is a Microsoft specific header and won't work with GCC or other non-Microsoft compilers.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1

6 Answers  


int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;

1 Answers  


HOW DO YOU HANDLE EXCEPTIONS IN C?

2 Answers   AppLabs,


Why do we need a structure?

1 Answers  


What does int main () mean?

1 Answers  


What is meant by preprocessor in c?

1 Answers  


Write a program to reverse a given number in c?

1 Answers  


Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

2 Answers  


write a programming in c language, 1 3 5 7 9 11

2 Answers   NIIT,


What are the advantages of using linked list for tree construction?

1 Answers  


How main function is called in c?

1 Answers  


1 What is a Data Structure?

1 Answers  


Categories