Exam 3: Loops, Headers, Macros, and Arrays
Exam 1: Computer Basics and C Programming18 Questions
Exam 2: C Programming Language20 Questions
Exam 3: Loops, Headers, Macros, and Arrays53 Questions
Select questions type
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)
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)
#include "stdio.h"int a = 20;
Int main()
{
Int a = 10;
Printf("%d", ::a);
Return 0;
}
(Multiple Choice)
4.8/5
(39)
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
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)