=0; rev[j++] = str[i--]);
rev[j] = '*';
puts(rev);
}
" />
=0; rev[j++] = str[i--]);
rev[j] = '*';
puts(rev);
}
" />
C Programming Language Function in C Language
⚠ Report Question ✓ Question Verified
#include void main() { char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]); rev[j] = '*'; puts(rev); }
Learn More MCQ Questions from C Programming Language Function in C Language
Evaluate your knowledge of functions in C programming with these multiple choice questions. Learn about the different types of functions and how to use them to write modular and organized C code. Take the quiz now!