Vidyalelo
C Programming · Q32

Standard Library Functions

Programming · C Programming · question 32

Q32

What will be the output of the following C code? char str[20]; strcpy(str, "123456"); res = atoi(str); printf("%s %d ", str, res);

A.
123456 0
B.
123456 0.0
C.
123456 123456
Answer
D.
123456 123456.0

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board