Exam 3: Loops, Headers, Macros, and Arrays

arrow
  • Select Tags
search iconSearch Question
  • Select Tags

In order to fetch the address of the variable we write preceding _________ sign before variable name.

(Multiple Choice)
4.8/5
(42)

Which macro is used to insert assembly code in C program (VC++ compiler)?

(Multiple Choice)
4.9/5
(39)

What is the output of below program? Int main() { For(; ;) For(; ;) Printf("Hello.."); Return 0; }

(Multiple Choice)
4.9/5
(40)

How many loops are there in C

(Multiple Choice)
4.8/5
(38)

If 'a' is the integer which is not statically initialized then what is the value of 'a'?

(Multiple Choice)
4.9/5
(37)

What is storage class for variable A in below code?int main(){int A;A = 10;printf("%d", A);return 0;}

(Multiple Choice)
4.8/5
(33)

#include "stdio.h" Int main() { Int a = 10; Printf("%d", a); Int a = 20; Printf("%d",a); Return 0; }

(Multiple Choice)
4.8/5
(34)

C is a ____________________ language

(Multiple Choice)
4.9/5
(39)

#include "stdio.h"int a = 20; Int main() { Int a = 10; Printf("%d", ::a); Return 0; }

(Multiple Choice)
4.8/5
(39)

which is better memory allocation when size is not known

(Multiple Choice)
4.8/5
(28)

A Pointer to a block of memory is considered same as an array.

(Multiple Choice)
4.9/5
(35)

Any type of modification on the parameter inside the function will reflect in actual variable value can be related to..

(Multiple Choice)
4.9/5
(39)

What is the extension of output file produced by Preprocessor?

(Multiple Choice)
4.8/5
(34)
Showing 41 - 53 of 53
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)