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
What is default value of global variable in c?
write a program to swap Two numbers without using temp variable.
75 Answers EMC, Focus, GreyB, HCL, Hitech, HP, Huawei, Infosys, Mannar Company, Microsoft, Miles Software, Odessa Technologies, Satyam, TCS, Wipro,
What is c programming structure?
What does *p++ do? What does it point to?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
Which is best book for data structures in c?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
void main() { int a=1; while(a++<=1) while(a++<=2); }
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"