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 is the difference between malloc calloc and realloc in c?
What should malloc(0) do?
write a program for the normal snake games find in most of the mobiles.
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is difference between constant pointer and constant variable?
How does #define work?
What does the file stdio.h contain?
How can I discover how many arguments a function was actually called with?
What is the difference between ++a and a++?
how should functions be apportioned among source files?
What is the difference between abs() and fabs() functions?
Can math operations be performed on a void pointer?
Write a c program to demonstrate character and string constants?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above