Convert binary number to octal
Write a C program to convert a binary number to its corresponding octal number.
#include<stdio.h>#include<conio.h>main(){ int i=12; void printoctal(int,int); printoctal(i,i); getch();}void printoc...
Engineering
Interview Coaching
Interview Questions
Tech FAQs
Have you experienced being given too many tasks?
How to handle academic gap while applying for a job?
What do you do when things do not go as planned? Cite an example.
Give me good reasons why should I choose you over others.
Aptitude Test Preparation Tips
Importance of an MBA for an entrepreneur
Describe a time when you had to convince a friend ?
Describe a time when you had to listen to someone.
What will you do when you are not able to get your message across to your audience?
Do you like working in a team or alone? Explain.
Ask Interview Question?
Have Career Question?
Ask Chandra
Ask Only Career questions.
#include<stdio.h>#include<conio.h>main(){ int i=12; void printoctal(int,int); printoctal(i,i); getch();}void printoc...