What is default value of global variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
code for concatination of 2 strings with out using library functions?
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
What is static memory allocation?
what is the first address that gets stored in stack according to a C or C++ compiler???? or what will be the first address that gets stored when we write a C source code????????
write a addition of two no. program with out using printf,scanf,puts .
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is a segmentation fault?
main() { int i; printf("%d",i^i); }
what is the difference between global variable & static variable declared out side all the function in the file.
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
What is operator promotion?