Advertisements
Advertisements
प्रश्न
Select the correct option from multiple choice question.
What will be the output?
Void main() {
Int y;
y=0x10+010+10;
printf(“\ny=%x”,y); }
विकल्प
y = 34
x = 34
y = 22
Error
MCQ
उत्तर
y = 22
shaalaa.com
Data Input and Output in C-Programming
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2017-2018 (June) CBCGS
APPEARS IN
संबंधित प्रश्न
What is an error ? Explain different types of errors occurred in program.
Predict output of following program segment.
main()
{
int a,b,*p1,*p2,x,y;
clrscr();
a=48;b=10;p1=&a;p2=&b;
x=*p1**p2-8;
*p1=*p1+*p2;
y=(*p1/ *p2)+20;
printf("%d%d%d%d%d%d",*p1,*p2,a,b,x,y);
}
Predict output of following program segment.
main()
{
int x=4, y=9,z;
clrscr();
z=x++ + --y+y;
printf("\n%d%d%d",x,y,z);
z= --x+x+y--;
printf("\n%d%d%d",x,y,z);
getch();
}
WAP to print following pattern for n lines. [Note: range of n is 1-9]
1
121
12321
1234321
WAP to print binary equivalent of entered decimal no.