Can a pointer be volatile in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between structure and union?
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); }
Is c compiled or interpreted?
define switch statement?
What is property type c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
i need all types of question paper releted to "c" and other language.
What's the total generic pointer type?
Do pointers take up memory?
Which is better malloc or calloc?
What is the most efficient way to store flag values?
what is the code to display color fonts in the output?