1.

#include <iostream>using namespace std;int main(){    char lfc[20];    int i;    for(i = 0; i < 10; i++)        *(lfc + i) = 65 + i;    *(lfc + i) = ' ';    cout << lfc;    return(0);   } 
13.What is the output of this program?

A. fg
B. cdef
C. defg
D. abcd
Answer» B. cdef


Discussion

No Comment Found

Related MCQs