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
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
What does the characters “r” and “w” mean when writing programs that will make use of files?
difference between the array and linked list general difference related to memory
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
What does void main return?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
a program that can input number of records and can view it again the record
main() { int a[10]; printf("%d",*a+1-*a+3); }
Is flag a keyword in c?
When can a far pointer be used?
Is there a built-in function in C that can be used for sorting data?