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 can I change the size of the dynamically allocated array?
What are the 4 types of programming language?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What are pointers? Why are they used?
What is the function of multilevel pointer in c?
What is scope rule in c?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is s in c?
What are the types of data structures in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What does the file stdio.h contain?
What are the modifiers available in c programming language?
What is strcpy() function?
What does sizeof int return?
What functions are used in dynamic memory allocation in c?