How do you declare a variable that will hold string values?
No Answer is Posted For this Question
Be the First to Post Answer
What is array of structure in c programming?
What are the basic data types associated with c?
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 Dynamic memory allocation in C? Name the dynamic allocation functions.
main() { intx=2,y=6,z=6; x=y=z; printf(%d",x) }
5 Answers Amazon, HCL, Thought Works,
List some basic data types in c?
Tell me with an example the self-referential structure?
Explain what is a static function?
Bit swapping
What are integer variable, floating-point variable and character variable?
What is clrscr in c?
Are pointers integers in c?