2)#include<iostream.h>
main()
{
printf("Hello World");
}
the program prints Hello World without changing main() the
o/p should
be
intialisation
Hello World
Desruct
the changes should be
a)iostream operator<<(iostream os, char*s)
os<<'intialisation'<<(Hello World)<<Destruct
b) c) d)none of the above
Answer Posted / sheeba
a
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Do you know the difference between malloc() and calloc() function?
Using which language Test cases are added in .ptu file of RTRT unit testing???
Why do we use main function?
Why ca not I do something like this?
Can a pointer be volatile in c?
What is the heap?
What does c mean in standard form?
Explain the difference between getch() and getche() in c?
Explain how can you tell whether a program was compiled using c versus c++?
What is the difference between call by value and call by reference in c?
Explain the difference between structs and unions in c?
Can a variable be both static and volatile in c?
What is the difference between the local variable and global variable in c?
How can you pass an array to a function by value?
What does the message "automatic aggregate intialization is an ansi feature" mean?