Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << "
";2) cout.put(88);3) cout << char(88) << "
";
a) 1
b) 2
c) 3
d) constant
No Answer is Posted For this Question
Be the First to Post Answer
difference between loading and linking
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Explain is it better to bitshift a value than to multiply by 2?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
How can a string be converted to a number?
How can I read data from data files with particular formats?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
When is an interface "good"?
in linking some of os executables are linking name some of them
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }