Advertisements
Advertisements
प्रश्न
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);}
विकल्प
r = 3
Run time Error
Compile time Error
None of the above
MCQ
This question doesn't have a solution currently. Please check again in a few days.
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 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]); }
Select the correct option from multiple choice question.
Which of the following is used as a string termination character?