A lazy programmer has recently left the company you work for, and you have inher
ID: 3771260 • Letter: A
Question
A lazy programmer has recently left the company you work for, and you have inherited all his programs. However, the program shown below contains no documentation and the users don't know what to do with it. Please review the program and, without compiling or running it, copy and paste it into the answer box, and add comments that describe its functionality in as much detail as possible. Use the proper syntax for commenting in C so that the program will continue to compile.
A lazy programmer has recently left the company you work for, and you have inherited all his programs. However, the program shown below contains no documentation and the users don't know what to do with it. Please review the program and, without compiling or running it, copy and paste it into the answer box, and add comments that describe its functionality in as much detail as possible. Use the proper syntax for commenting in C so that the program will continue to compile.
#include <stdio.h> void PrintFace(char eym) { char n = '>'; printf(" %c %c ", eym, eym); printf(" %c ", n); printf(" %c%c%c%c%c ", eym, eym, eym, eym, eym); return; } int main() { char usrKey = '-'; printf("Enter key: "); scanf("%c", &usrKey); PrintFace(usrKey); return 0; }