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 / anitha
d
| Is This Answer Correct ? | 12 Yes | 5 No |
Post New Answer View All Answers
What are void pointers in c?
Explain how can a program be made to print the name of a source file where an error occurs?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is a structural principle?
Tell us bitwise shift operators?
code for replace tabs with equivalent number of blanks
How macro execution is faster than function ?
What does & mean in scanf?
What are the differences between new and malloc in C?
What is the right type to use for boolean values in c? Is there a standard type?
Why cant I open a file by its explicit path?
Explain what is the benefit of using an enum rather than a #define constant?
The statement, int(*x[]) () what does in indicate?
How is a pointer variable declared?
What is the Purpose of 'extern' keyword in a function declaration?