Advertisements
Advertisements
प्रश्न
Select the correct option from multiple choice question.
Which of the following is used as a string termination character?
विकल्प
0
\0
/0
None of these
MCQ
उत्तर
\0
shaalaa.com
Character Set in C-Programming
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (June) CBCGS
APPEARS IN
संबंधित प्रश्न
What is file? What are different functions available to read data from file? Specify the different modes in which files can be opened along with syntax.
Select the correct option from multiple choice question.
What will be the output of the following program?
Void main() {
Double x=28;
Int r;
r=x%5;
printf(“\n r=%d”,r);}
Select the correct option from multiple choice question.
What will be the output of following program
Void main() {int x[]={10,20,30,40,50};
printf(“\n%d%d%d%d”,x[4], 3[x], x[2], 1[x], x[0]); }