Write a program that would input integer from 40-127 and output the equivalent octal hexadecimal value.

Questions by save_you

Showing Answers 1 - 6 of 6 Answers

R.S.JAYASATHYANARAYANAN

  • Dec 27th, 2006
 

void main()

{

int a;

printf("Enter the no bet 40 to 127");

scanf("%d",&a);

printf("%x",a);

geetch();

}

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions