#include <stdio.h> int main() { int arr[5]={1,2,3,4,5}; //an array consists of five integer values. for(int i=0;i<5;i++) { printf("%d ",arr[i]); } return 0; }
Not registered? Create an account
Forgot Password?
Already a registered user? Login