for loop

#include <stdio.h>
int main() {
  int n, i;
  printf("Enter an integer: ");
  scanf("%d", &n);
  for (i = 1; i <= 10; ++i) {
    printf("%d * %d = %d \n", n, i, n * i);
  }
  return 0;
}

Comments

Popular posts from this blog

Road Accident Dashboard !

CONSUMER SATISFACTION ON ELECTRONIC TWO-WHEELER USER

Dropout Ratio in India