What are header files why are they important?
No Answer is Posted For this Question
Be the First to Post Answer
char ch=10;printf("%d",ch);what is the output
Define the scope of static variables.
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
WAP to convert text into its ASCII Code and also write a function to decode the text given?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
in linking some of os executables are linking name some of them
What is your favorite subject?
1 Answers Ericsson, Invendis, Tech Mahindra,
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
What is the difference b/w main() in C language and main() in C++.
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
a=5 a=a++/++a
Explain main function in c?