Expressions

Gapfill exercise

  
Enter your answers in the gaps. When you have entered all the answers, click on the "Check" button.
What is Getch C?
getch() is a way to get a user inputted . It can be used to hold program , but the "" is simply a side-effect of its primary purpose, which is to wait until the user enters a character. () and () are used to read a character from screen.

What is %d in C called?
%d is used to the output in C language. If we want to print an integer, we use %d. It is called a format . ... “%d” within format string in , for instance, denotes that the format of the input is ( decimal integer).

What is conio h in C?
h is a C header file used mostly by MS-DOS compilers to provide input/output. It is not part of the C standard or ISO C, nor is it defined by . This header declares several useful library functions for performing " input and output" from a .

What does #define do in C?
In the C Programming Language, the #define allows the definition of macros within your code. ... definitions are not variables and cannot be changed by your program code like variables. You generally use this syntax when creating that represent numbers, strings or expressions.

What is enum in C?
is a user defined datatype in C . It is used to assign names to the constants which makes a program easy to and maintain. The keyword “” is used to declare an . ... The keyword is also used to define the variables of enum type.