C Programming Exam Guides
C Programming Exam Guides
C language is available for which of the following Operating Systems: DOS, Windows, and Unix
-32768 to +32767 is the valid range of numbers for int type of data?
Multiplication operator ( * ) has the highest precedence following the Math Rule - MDAS
scanf() and printf() functions below are used for single character Input/Output.
C supports 3 basic looping constructs: For Loop, Do While Loop, While Loop
What should be the expression return value for a do-while to terminate? 0 (zero)
The number of the relational operators in the C language is Four (>, <, >=, <=)
A Link is a compiler.
Pointers are a derived data type that can store the address of other C variables or a memory location.
The maximum number of elements in the array declaration int a [5][8] is 40.
If you don’t initialize a static array, what will be the element set to an undetermined value.
The process of translating a source program into machine language is a function of Compiler.
Function arguments can be A structure member, A pointer variable, and A complete structure.
A “switch” statement is used to choose from multiple possibilities which may arise due to
different values of a single variable.
A function is a subroutine that may include one or more Statements designed to perform a specific
task.
C supports the goto statement to branch unconditionally from one point to another in the program.
What is the answer of: 7%3. In C Programming the percent sign (%) is called modulo that gets
the value of remainders in division operator.
It is True that using C language programmers can write their own library functions\.