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 scope rule in c?
What is the use of bitwise operator?
Which is the memory area not included in C program? give the reason
What is a MAC Address?
Does c have circular shift operators?
How does C++ help with the tradeoff of safety vs. usability?
Can we declare a function inside a function in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
int a=2,b=3,c=4; printf("a=%d,b=%d\n",a,b,c); what is the o/p?
If null and 0 are equivalent as null pointer constants, which should I use?
What is #ifdef ? What is its application?
Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June