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 uses of .net
what are non standard function in c
How reliable are floating-point comparisons?
Are bit fields portable?
What are called c variables?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is the benefit of using const for declaring constants?
Explain the concept and use of type void.
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What does != Mean in c?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1