Answer Posted / bertilla
#include<conio.h>
#include<stdio.h>
void main()
{
int i,n,arr[15];
for(i=0;i<=14;i++){arr[i]=0;}
do
{
arr[i]=n%2;
n=n/2;
i--;
if(n==1){arr[i]=1;}
}while(n>1);
for(i=0;i<=15;i++)
{
printf("%d",arr[i]);
}
getch();
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain how do you generate random numbers in c?
Does c have circular shift operators?
How are structure passing and returning implemented?
If you know then define #pragma?
What are the applications of c language?
I came across some code that puts a (void) cast before each call to printf. Why?
What are control structures? What are the different types?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is c definition?
Can a variable be both constant and volatile?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
When should a type cast be used?
how is the examination pattern?
can anyone please tell about the nested interrupts?
What does it mean when a pointer is used in an if statement?