Kizspy Question: 18
(Choose 1 answer)
PUBVERSLOW.Com
What is the result displayed on the screen of the following program?
#include<stdio.h>
#include<ctype.h>
int main()
{
char a "hello world";
int i = 0;
while (!isspace(a[i]))
i++]
printf("%d, %c", i, a[i-1]);
return 0;
A. 0, h
B. 5, o
C. 5,
D. 5, w