How can a program be made to print the name of a source file where an error occurs?
Magic square
What is the right type to use for boolean values in c?
Can you return null in c?
What is the difference between static and global variables?
What is register variable in c language?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What are the concepts introduced in OOPs?
related proverb of "dont count your chicken before it hatches"
What is the difference between pure virtual function and virtual function?
What is a MAC Address?
i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
what is mean by Garbage collection ? Please answer me. Advance thanks.