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
Answers were Sorted based on User's Feedback
what is the output of below int n=10; (n++)++; printf("%d",n);
why division operator not work in case of float constant?
What is the use of extern in c?
Which is better oop or procedural?
What is use of pointer?
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
C program to find all possible outcomes of a dice?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Without using main fn and semicolon,print remainder for a given number in C language
Explain what happens if you free a pointer twice?