Why do we write return 0 in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the general description for loop statement and available loop types in c?
What is 'bus error'?
Explain how does free() know explain how much memory to release?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
How do we make a global variable accessible across files? Explain the extern keyword?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
Explain what is the difference between functions getch() and getche()?
Why the use of alloca() is discouraged?
How to convert decimal to binary in C using recursion??
What is the difference between variable declaration and variable definition in c?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
what is the benefit of c30