C Programming Question and Answers
61. | What is the syntax for comments in C? |
---|---|
Below is the syntax for comments in C. The characters or words or anything which are given between "/*" and "*/", won't be considered by C compiler for compilation process. These will be ignored by C compiler during compilations. Syntax : /* your comments here */ |
|
62. | What are reserved words? |
---|---|
|
|
63. | What is the difference between getch() and getche()? |
---|---|
Both getch() and getche() are used to read single character there is very little difference
|
|
64. | What are actual arguments? |
---|---|
When you create and use functions that need to perform an action on some given values, you need to pass these given values to that function. The values that are being passed into the called functions are referred to as actual arguments. | |