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 / renuka
c
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
What are the ways to a null pointer can use in c programming language?
Can you return null in c?
What is struct node in c?
how do you programme Carrier Sense Multiple Access
How can I call a function with an argument list built up at run time?
int i=10; printf("%d %d %d", i, i=20, i);
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
Difference between linking and loading?
Can we add pointers together?
why we wont use '&' sing in aceesing the string using scanf
What are identifiers c?
How do I convert a string to all upper or lower case?
What is the code in while loop that returns the output of given code?
What are the __date__ and __time__ preprocessor commands?
What are the 4 types of functions?