subject
Computers and Technology, 13.09.2021 08:40 googoo4

Replace any alphabetic character with '_' in 2-character string passCode. Ex: If passCode is "9a", output is: 9_
Hint: Use two if statements to check each of the two characters in the string, using isalpha().
```
#include
#include
#include

int main(void) {
char passCode[3];

scanf("%s", passCode);

/* Your solution goes here */

printf("%s\n", passCode);
return 0;
}
```

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 17:00
Acase study allows a more detailed look at the life of a single subject than any other study.
Answers: 3
question
Computers and Technology, 24.06.2019 00:50
Which player type acts on other players? a. killer b. achiever c. explorer d. socializer
Answers: 1
question
Computers and Technology, 24.06.2019 08:30
Intellectual property rights are exclusive rights that protect both the created and the creation. ipr offers exclusively what benefits to the person or people covered by it
Answers: 3
question
Computers and Technology, 24.06.2019 09:30
Retype the statements, correcting the syntax errors. system.out.println("num: " + songnum); system.out.println(int songnum); system.out.println(songnum " songs"); note: these activities may test code with different test values. this activity will perform two tests: the first with songnum = 5, the second with songnum = 9. see how to use zybooks.
Answers: 1
You know the right answer?
Replace any alphabetic character with '_' in 2-character string passCode. Ex: If passCode is "9a", o...
Questions
question
Mathematics, 29.04.2021 14:00
question
Business, 29.04.2021 14:00
question
Mathematics, 29.04.2021 14:00
Questions on the website: 13722367