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
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
WHO WROTE C LANGUAGE?
Why is c known as a mother language?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
write a program to generate 1st n fibonacci prime number
What are the different types of constants?
Why string is used in c?
Can a binary search tree be used as an index? If yes, how? Explain
What is the difference between malloc calloc and realloc in c?
What is anagram in c?
What is ## preprocessor operator in c?