Advertisements
Advertisements
प्रश्न
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]); }
विकल्प
Error
10 20 30 40 50
50 40 30 20 10
None of these
MCQ
उत्तर
None of these
shaalaa.com
Character Set in C-Programming
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
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.
Which of the following is used as a string termination character?