Answer Posted / pavan kumar
This is of because C was developed into C++ in two stages...
so,
the developers were fisrt named as C+ and later it was
finalasied as C++
Thank you....
P@1
| Is This Answer Correct ? | 18 Yes | 28 No |
Post New Answer View All Answers
Explain is it valid to address one element beyond the end of an array?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Explain Function Pointer?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Explain how do you use a pointer to a function?
Explain what is the heap?
Can a function argument have default value?
What are run-time errors?
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is the purpose of macro in C language?
write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a
Explain the difference between ++u and u++?
What are the applications of c language?
while initialization of array why we use a[][2] why not a[2][]...?