#include void test(char c[]) { C=C+2; C-- printf("%c".*c); } int main() { char ch[5]={'p','o', 'u','r'}; test(ch); return 0; } What is the output of the above program? Ор O O O U O r
Answers
Answered by
0
Answer:
#include void test(char c[]) { C=C+2; C-- printf("%c".*c); } int main() { char ch[5]={'p','o', 'u','r'}; test(ch); return 0; } What is the output of the above program? Ор O O O U O r
Explanation:
#include void test(char c[]) { C=C+2; C-- printf("%c".*c); } int main() { char ch[5]={'p','o', 'u','r'}; test(ch); return 0; } What is the output of the above program? Ор O O O U O r
❣️❣️
Similar questions