Home » C Programming » Input & Output » Question
  1. Which of the following is an invalid method for input?
    1. scanf(“%d %d %d”, &p, &q, &r);
    2. scanf(“Three values are %d %d %d”,&p, &q, &r);
    3. scanf(“%d%d%d”,&p, &q, &r);
    4. All of above
    5. None of these
Correct Option: E

None of these



Your comments will be displayed only after manual approval.