Computer Science, asked by irascyed, 1 year ago

•Write a c++ program that reads 10 single letter nucleotides in an array. Print their full names separately .

Answers

Answered by sareermir757
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 khansadikkhan1997
0

Answer:

i have known answer this question

Similar questions