COMPUTER SCIENCE AND ENGINEERING
DATA STRUCTURES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
Determine the output:#include <stdio.h> int main() { int a, b; a = 10, 20, 30; b = (10, 20, 30); printf("a= %d, b= %d", a, b); return 0; }
|
a=10, b=30
|
|
a=30, b=10
|
|
a=30, b=30
|
|
Error
|
Explanation:
There is 1 question to complete.