Module 10 of 15
Arrays store multiple values of the same data type in contiguous memory locations. They are accessed using index numbers starting from 0.
Arrays एक ही प्रकार के कई values को एक साथ store करते हैं। इन्हें index के द्वारा access किया जाता है जो 0 से शुरू होता है।
#include <stdio.h>
int main() {
printf("Welcome to Arrays");
return 0;
}