Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Can anybody convert my c code to matlab code?Thank you

1 vue (au cours des 30 derniers jours)
Barenya Bikash  Hazarika
Barenya Bikash Hazarika le 19 Juin 2018
Clôturé : MATLAB Answer Bot le 20 Août 2021
#include<stdio.h>
#define MAX_SIZE 5
int main()
{
int arr[MAX_SIZE]; %Declare an array of MAX_SIZE
int i,j, N;
// Input array size
printf("Enter size of array: ");
scanf("%d", &N);
// Input elements in array
printf("Enter %d elements in the array : ", N);
for(i=0; i<N; i++)
{
scanf("%d", &arr[i]);
}
// Print all elements of array
printf("\nElements in array are: ");
for(i=0; i<N; i++)
{
for(j=i; j<N; j++)
{
printf("%d, ", arr[i,j]);
}
printf("\n");
}
return 0;
}

Réponses (1)

KSSV
KSSV le 19 Juin 2018
  1 commentaire
Barenya Bikash  Hazarika
Barenya Bikash Hazarika le 19 Juin 2018
Modifié(e) : Barenya Bikash Hazarika le 19 Juin 2018
If we put a array size of 5 and elements as 1,2,3,4,5,then the output will be
  • 1 2 3 4 5
  • 2 3 4 5
  • 3 4 5
  • 4 5
  • 5

Cette question est clôturée.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by