What character terminates all strings composed of character
arrays?
1) 0
2) .
3) END
Answers were Sorted based on User's Feedback
Answer / a programmer
May be the options are not correct. Do u feel that 0 is
ascii zero or numeric zero. If numeric zero, then the answer
is wrong. Every string will be terminated with the special
character '/0'.
| Is This Answer Correct ? | 8 Yes | 2 No |
what is the significance of static storage class specifier?
Explain how can I remove the trailing spaces from a string?
What is define c?
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
Explain what is the benefit of using const for declaring constants?
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
ATM machine and railway reservation class/object diagram
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
Write a programe print the sum of series 0,1,2,.....10
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }