why we use "include" word before calling the header file. is there any special name for that include??????
Answer / amar
include is generally a sentence but in C it helps to include or we can say connect our source program to C header files such that #include<stdio.h>,#include<math.h> etc.
| Is This Answer Correct ? | 11 Yes | 0 No |
What is pointer in c?
I have seen function declarations that look like this
write a program to find lcm and hcf of two numbers??
What are # preprocessor operator in c?
What is the difference between local variable and global variable in c?
Define recursion in c.
what is default constructor?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
What is logical error?
Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }