Answered step by step
Verified Expert Solution
Question
1 Approved Answer
! first picture is the output. it's supposed to continue until pressed ESC. the second picture is my program. Giving error on line 19. Can
!
first picture is the output. it's supposed to continue until pressed ESC. the second picture is my program. Giving error on line 19. Can someone help me please.
thanks
1 C:\Users\saiba\AppData\Local\Temp\Temp1_asciiconverter (1).zip asciiconverter.exe come student name and set: Nikola Tesla 2X Enter a decimal number: 27 Sreate decimal: 27 My hexadecimal: lb Class character: 6 Learn Press any key to run the program again or ESC to exit. gram int num; 13 #define ESC 27 14 int main() 15 - { 16 17 bool loop false; 18 char keycode; 19 char ESC = '27'; 20 21 - while( loop false) { 22 printf("Enter a number between 0 and 250 "); 23 scanf("%d", &num); 24 25 printf("Decimal number: %d ", num); 26 27 printf("Hexadecimal number: %x ", num); 28 29 printf("Character: %c ", num); I 38 31 printf("Press any key to run the program again or ESC to exit"); 32 33 if(keycode ESC) 34- { 35 loop == true; 36 } 37 } 38Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started