📚 Practice Mode

C Programming Language Quiz 2

Learn at your own pace with hints and detailed explanations

1 / 10
Multiple Choice

To declare and initialize character array :

  1. char s[] = { 'a', 'b' , 'c' };
  2. char s[] = "abc";
  3. both correct
  4. both wrong