You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
No Answer is Posted For this Question
Be the First to Post Answer
write a porgram in c++ that reads an integer and print the biggest digit in the number
How is data hiding achieved in c++?
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
What is the difference between "overloading" and "overridding"?
how many rounds and wt type of questios ask in the written test for first round 2. tech. round 3. and futher rounds
5. Can inline functions have a recursion?
Differentiate between the message and method in c++?
When does a name clash occur?
What is the syntax for a for loop?
How do I run a program in notepad ++?
What is iostream in c++ used for?
Q1 On the screen how do you write the following words? she sells seashells by the seashore (a) all in one line (b) in three lines Q2 Write a program that asks interactively the user’s name and age and responds with Hello name, next year you will be next_age. where next_age is age + 1 Q3 For the different values of n, what is the output? printf(“%x %c %o %d”,n,n,n,n); (a) n = 67 (b) n = 20 (c) n = 128 (d) n = 255 (e) n = 100 Q4 What will be the output of the following program? int main() { char a,b,c; scanf(“%c %c %c”,&a,&b,&c); printf(“a=%c b=%c c=%c”,a,b,c); return 0; } [Note: The user input is:ABC DEF GHI]