What is #include in c?
Answer / dhanshri chabukswar
#include means "bring in this file's code before compiling"....
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
Explain built-in function?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
0 Answers MAHINDRA, Protech, Sivan Tech,
In C language, a variable name cannot contain?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
what is the difference between char * const and const char *?
What is the difference between arrays and pointers?
When we use void main and int main?
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
What is const volatile variable in c?
Where static variables are stored in memory in c?