C program to print the all elements of any array






#include<stdio.h>
int main(){

int arr[]={1,2,34,56,89};

int i;

    for(i=0;i<5;i++){
        printf("%d ",arr[i]);
    }

    return 0;
}




No comments: