0
What is the output of this code { **++argc[] }?
If following c program (myprog) is run from the command line as myprog friday tuesday Sunday, then what would be the output? main(int arg, char *argc[] ) { printf("%c", **++argc[] ) } A) m B) f C) myprog D) friday
0 Respuestas