We shall learn Array using C Programming. Here is the list what we are going to learn: 1. Declare Array and Print in C Programming. [code lang=”js”] #include int main() { printf("==========Part 1=========\n"); int x[]={2,8,6,4,3}; for(int i=0;i<5;i++){ printf("Data: %d \n",x[i]);