•Write a c++ program that reads 10 single letter nucleotides in an array. Print their full names separately .
Answers
Answered by
1
Answer:
Explanation:
#include <stdio.h>
int main() {
int n, i;
printf("Enter : ");
scanf("%d", &n);
for (i = 1; i <= 10; ++i) {
printf("%d * %d = %d \n", n, i, n * i);
}
return 0;
}
Answered by
0
Answer:
i have known answer this question
Similar questions