For declaring the variables a and b, which of the following declaration statements is incorrect??
- int a, b; // Declaration
- int a, /* Declaration*/ b;
- int a, // Declaration // b;
- int a, b; // Declaration //
Answer:
Option c: int a, // Declaration // b;
Explanation Here
0 Comments