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 / beedha
b
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
provide an example of the Group by clause, when would you use this clause
What is volatile c?
What is the explanation for cyclic nature of data types in c?
Is c is a low level language?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is the main difference between calloc () and malloc ()?
what do u mean by Direct access files? then can u explain about Direct Access Files?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Explain what is wrong in this statement?
Linked lists -- can you tell me how to check whether a linked list is circular?
What are all different types of pointers in c?
How do we declare variables in c?
What are the types of macro formats?
What header files do I need in order to define the standard library functions I use?
What is the use of getch ()?