Advertisements
Advertisements
प्रश्न
WAP to print binary equivalent of entered decimal no.
उत्तर
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int n,i;
clrscr();
printf(“Enter a number: “);
scanf(“%d”,&n);
printf(“Binary form is: “);
for(i=15;i>=0;i--)
{
printf(“%d”,n/(int)(pow(2,i));
n=n%(int)(pow(2,i));
}
getch();
}
Output:
Enter a number:12
Binary form is:0000000000001100
shaalaa.com
Data Input and Output in C-Programming
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
What is an error ? Explain different types of errors occurred in program.
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); }
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