Answer Posted / manisha thakur
in c is not a object oriented
in c++ is object oriented
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Compare array data type to pointer data type
Where are some collections of useful code fragments and examples?
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
Explain what is wrong with this program statement? Void = 10;
Why array is used in c?
Why do we write return 0 in c?
What is c language and why we use it?
What is the difference between printf and scanf )?
largest Of three Number using without if condition?
What do you mean by scope of a variable in c?
what do you mean by enumeration constant?
How can I delete a file?
What is far pointer in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;