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
How do we print only part of a string in c?
How many levels of indirection in pointers can you have in a single declaration?
What is a c token and types of c tokens?
What are disadvantages of C language.
Does c have function or method?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is volatile, register definition in C
Where in memory are my variables stored?
All technical questions
Write the syntax and purpose of a switch statement in C.
What is c language in simple words?
What is the use of function in c?
What are header files why are they important?
Why shouldn’t I start variable names with underscores?
Explain how do you convert strings to numbers in c?