Why header files are used?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between procedure oriented and object oriented progaming language
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
What is the full form of getch?
Can anyone tell what is stack overflow? what precaution we should take?
How can I open files mentioned on the command line, and parse option flags?
Is it valid to address one element beyond the end of an array?
What is c variable?
why 'c' is called middle level language.
What is static identifier?
How do you determine whether to use a stream function or a low-level function?
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?