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]
1 2138int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
1322Post New C++ General Questions
What is an undefined reference/unresolved external symbol error and how do I fix it?
What are disadvantages of pointers?
Who created c++?
What is stl containers in c++?
Name the debugging methods that are used to solve problems?
What is function overriding in c++?
Can I learn c++ without learning c?
What do you mean by friend class & friend function in c++?
What is the purpose of extern storage specifier?
What is c++ library?
Can you pass a vector to a function?
Do you know what is overriding?
Is c++ an oop?
What is the use of string in c++?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?