UGC-NET June CS 2019 Paper 1
November 19, 2023Question 6844 – UGC NET CS 2016 Aug- paper-3
November 19, 2023Question 7688 – UGC-NET DEC-2019 Part-2
Which of the following are legal statements in C programming language?
(a) int *P = &44;
(b) int *P = &r;
(c) int P = &a;
(d) int P = a:
Choose the correct option:
Correct Answer: C
Question 25 Explanation:
Legal Statements:
int *P = &r;
int P = a:
Illegal Statements:
int *P = &44;
int P= &a;
int *P = &r;
int P = a:
Illegal Statements:
int *P = &44;
int P= &a;
(a) and (b)
(b) and (c)
(b) and (d)
(a) and (d)
Subscribe
Login
0 Comments