either in the doc its self or in the attachment file
Answer:
#include <stdio.h>
#include <string.h>
int main(void) {
char simonPattern[50];
char userPattern[50];
int userScore;
int i;
userScore = 0;
scanf("%s", simonPattern);
scanf("%s", userPattern);
for(i = 0;simonPattern[i]!='\0';i++){
if(simonPattern[i]!=userPattern[i]){
userScore=i;
break;
}
}
printf("userScore: %d\n", userScore);
return 0;
}
Explanation:
- Use a for loop that runs until it does not reach the end of simonPattern.
- Check whether the current index of simonPattern and userPattern are not equal and then assign the value of i variable to the userScore variable and break out of the loop.
- Finally display the user score.
Answer:
A: Radio waves.
Explanation:
Computers use short-wave radio in order to communicate with devices in it's immediate vicinity.
Answer:
in my opinion i think it is "C" by clicking on the run button...
name = input("What is you name?")
fav_number = input("What is you favorite number?")
print(name + " your favorite number is " + fav_number + "!")