#include<stdio.h>
{
printf("Hello");
}
how compile time affects when we add additional header file
<conio.h>.
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 |
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
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
HOW DO YOU HANDLE EXCEPTIONS IN C?
Why do we need a structure?
What does int main () mean?
What is meant by preprocessor in c?
Write a program to reverse a given number in c?
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
write a programming in c language, 1 3 5 7 9 11
What are the advantages of using linked list for tree construction?
How main function is called in c?
1 What is a Data Structure?