Function - Study Mode

[#106] Functions can return enumeration constants in C?
Correct Answer

(A) true

[#107] If the file name is enclosed in angle brackets, then . . . . . . . .
Correct Answer

(B) The preprocessor treats it as a system-defined file

[#108] The "else if" in conditional inclusion is written by?
Correct Answer

(D) #elif

[#109] What will be the output of the following C code? #include <stdio.h>
register int x

void main()
{
printf("%d", x)

}
Correct Answer

(D) Compile time error

[#110] What will be the output of the following C code? #include <stdio.h>
int main()
{
void foo()

void f()
{
foo()

}
f()

}
void foo()
{
printf("2 ")

}
Correct Answer

(D) Depends on the compiler