| Q.11 | Which of the following is invalid array initialisation in C language? | |
| Ans | 1. Press double [ ] = { 10.4, 4.2 -31.3, -12.2 } ; | |
| 2. int num[6] = { 2, 4, 12, 5, 45, 5 }; | ||
| 3. int n[ ] = { 2, 4, 12, 5, 45, 5 }; | ||
| 4. float press[ ] = { 12.3, 34.2 -23.4, -11.3 }; |
Correct Ans Provided: 1