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 the use of a static variable in c?
how we can say java is platform independent, while we require JVM for that particular Operating System?
Explain what is meant by 'bit masking'?
how to implement stack operation using singly linked list
i have a written test in tomorrow
What is exit() function?
10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
write a C program, given number is double without using addt ion and multiplication operator?ex:n=6,ans=12,pls send me ans to goviseenu@gmail.com
a=5 a=a++/++a
What are two dimensional arrays alternatively called as?
b) 4 c) 6 d) 7 32. Any C program a) must contain at least one function b) need not contain ant function c) needs input data d) none of the above 33. Using goto inside for loop is equivalent to using a) continue b) break c) return d)none of the above 34. The program fragment int a=5, b=2; printf(“%d”,a+++++b); a) prints 7 b)prints 8 c) prints 9 d)none of the above 35. printf(“ab” , “cd”,”ef”); prints a) ab abcdef c) abcdef, followed by garbage value d) none of the above 36. Consider the following program segment. i=6720; j=4; while((i%j)==0) { i=i/j; j=j+1; } On termination j will have the value a) 4 b) 8 c) 9 d) 6720
Write code for atoi(x) where x is hexadecimal string.