Write a program to receive an integer and find its octal
equivalent?

Answer Posted / gurpreet singh

#include<stdio.h>

int main()
{
int n,m,o=0,t=10;
printf("

Enter any integer value

");
scanf("%d",&n);

while(n>0)
{

m=n%8;
n=n/8;

o=o+(m*t);
t=t*10;

}
printf("

octal number=%d

",o/10);

}

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Hi, i have a project that the teacher want a pyramid of numbers in C# or java...when we click a button...the pyramid should be generated in a listbox/or JtextArea...and the pyramid should have the folowing form: 1 232 34543 4567654 567898765 67890109876 7890123210987 890123454321098 90123456765432109 0123456789876543210 Plz help with codes...didn't find anything on the net.

2886


could you please send the program code for multiplying sparse matrix in c????

3274


Sir... please give some important coding questions asked by product companies..

2018


write a simple calculator c program to perform addition, subtraction, mul and div.

3382


A program that will create a movie seat reservation. The program will display the summary seats and its status. The user will be ask what seat no. to be reserved, then it will go back again to the summary to display the updated seat status. If the seat no. is already reserved then it will prompt an error message. And also if the input seat no is out of range then it will also prompt an error message. The program is continuously running. Termination of the program will depends on how the programmer will apply. Sample output: Movie Seats Reservation Summary of Seats: Seat 1: Available Seat 2: Available Seat 3: Available Seat 4: Available Seat 5: Available Enter seat no. (Press 0 to terminate Or the assigned seat capacity) : 1 Movie Seats Reservation Summary of Seats: Seat 1: Reserve Seat 2: Available Seat 3: Available Seat 4: Available Seat 5: Available Enter seat no. (Press 0 to terminate Or the assigned seat capacity) : 6 The Seat no. is out of range! Movie Seats Reservation Summary of Seats: Seat 1: Reserve Seat 2: Available Seat 3: Available Seat 4: Available Seat 5: Available Enter seat no. (Press 0 to terminate Or the assigned seat capacity) : 1 The Seat no. is already reserved! Movie Seats Reservation Summary of Seats: Seat 1: Reserve Seat 2: Available Seat 3: Available Seat 4: Available Seat 5: Available Enter seat no. (Press 0 to terminate Or the assigned seat capacity) : 0 GoodBye... Thank You!!!

2070






write a program for area of circumference of shapes

2223


How can you relate the function with the structure? Explain with an appropriate example.

3125


how to programme using switch statements and fuctions, a programme that will output two even numbers, two odd numbers and two prime numbers of the users chioce.

2349


how to test pierrot divisor

2457


Write a Program in 'C' To Insert a Unique Number Only. (Hint: Just Like a Primary Key Numbers In Database.) Please Some One Suggest Me a Better Solution for This question ??

2124


What is data _null_? ,Explain with code when u need to use it in data step programming ?

3010


Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?

4068


What is full form of PEPSI

2116


Given a spherical surface, write bump-mapping procedure to generate the bumpy surface of an orange

3072


#include int main(void) { int a=4, b=2; a=b<>2 ; printf("%d",a); return 0; }

1292