Answered step by step
Verified Expert Solution
Question
1 Approved Answer
How could i fix the error pointer? int rot13 (char chIn, char *chOut)f char tempCh; if ((chIn 90)) freturn -1; tempCh = ((chn-65) + 13)
How could i fix the error pointer?
int rot13 (char chIn, char *chOut)f char tempCh; if ((chIn 90)) freturn -1; tempCh = ((chn-65) + 13) % 26; tempCh+-65; chOut-LtempCh ; return 0; int main) char ch-A char encCh; int returnVal; printf ("Encrypting %c ",ch); returnVal-rot13 (ch,&encCh) if (returnVal!-0) printf("Error in rot13 "); exit (1) printf("rot 13 encrypted value is %c ",encCh)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started