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 the difference between malloc() and calloc() function in c language?
How to explain the final year project as a fresher please answer with sample project
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What is pointer in c?
What are the disadvantages of external storage class?
What oops means?
code for concatination of 2 strings with out using library functions?
program to find a smallest number in an array
Is null always defined as 0(zero)?
what will be the output for the following main() { printf("hi" "hello"); }