Thursday, April 23, 2020

reverse the given array in c language

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int num, *arr, i;
    scanf("%d", &num);
    arr = (int*) malloc(num * sizeof(int));
    for(i = 0; i < num; i++) {
        scanf("%d", arr + i);
    }


    /* Write the logic to reverse the array. */


    for(i = num-1; i>-1; i--)
        printf("%d ", *(arr + i));
    return 0;
}

output:
  • 6
  • 16 13 7 2 1 12 
  • 
    
  • 
    
  • 12 1 2 7 13 16

how to print the range between two numbers in text format

int main() 
{
    int a, b;
    char *str[] = {"one""two""three""four""five""six""seven",  "eight",  "nine""even""odd"};
    scanf("%d\n%d", &a, &b);
    // Complete the code.
         
  for (int i=a; i<=b; i++) {
    if (i <= 9
         printf ("%s\n", str[i-1]);
    else 
        printf ("%s\n", str[9+(i%2)]);

  }
  return 0;
}

output:
input:
8
11
output:
eight
nine
even
odd

python class topic video