McqMate
Sign In
Hamberger menu
McqMate
Sign in
Sign up
Home
Forum
Search
Ask a Question
Sign In
McqMate Copyright © 2024
→
Mechanical Engineering
→
Principles of Programming Languages
→
In C, reference is declared using the sy...
Q.
In C, reference is declared using the symbol
A.
*
B.
&
C.
&&
D.
!
Answer» B. &
1k
0
Do you find this helpful?
10
View all MCQs in
Principles of Programming Languages
Discussion
No comments yet
Login to comment
Related MCQs
The value of an automatic variable that is declared but not initialized will be
The scope of a variable declared externally, is__________
The scope of a variable declared as static storage class is__________
The non-terminals symbol is defined with a transition diagram having......................
…………………means combine available symbol to create well formed sentences in the language
For which trigger timing can you reference the NEW and OLD qulaifires?
_________are generally passed by reference.
The hybid method between call by value and call by reference is______.
What will be the output of following code? #include <iostream> using namespace std; int main() { enum color { blue, orange, green }; enum fruit { apple, guava, orange }; int i = 0; for (i = blue; i <= green; i++) printf("%d", i); return 0; }
What is the output of following code? #include <iostream> using namespace std; int main() { int I; enum test { a = 1, b, c, d, e, f, g, h }; for (i = c; i <= g; i++) cout << " " << I; return 0; }