What will be the output of the following function?
include <stdio.h>
void main() { char str[10] = “Angel”; str[6] ='d'; printf(“%s”,str); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following function?
void main() { char str[10] = “Angel”; str[6] ='d'; printf(“%s”,str); }