An array of numbers is used in mathematical problems.
Math sentence;1+2+3 Math phrase: If i had 1 sock and i got 2 more socks i would have 3.
math fraction in a phrase for t over 12 = t/12
They define irrational numbers
A cashier uses math to define the total value of the items you buy.
An array of numbers is used in mathematical problems.
The numbers that define its size:int x[12][24];
Arrays are drawings or doodles that can show you a multiplication.
It is a detailed phrase
An array refers to storing data on multiple devices. An example of this would be to be able to type in six things, call them an array, and not need an identifier for each one.
Math sentence;1+2+3 Math phrase: If i had 1 sock and i got 2 more socks i would have 3.
math fraction in a phrase for t over 12 = t/12
They define irrational numbers
A cashier uses math to define the total value of the items you buy.
<storage_class> <type> <identifer> '[ '<number1> ']' '[ '<number2> ']' ... ';'
If by an object you mean a class or a struct, yes they can. Define the char array like you normally would but don't intialize any data into it. Do this in the constructor
#include "stdio.h" #define SIZE 100; void main() { int array[SIZE], i, size; printf("\nEnter the Size off Array :- "); scanf("%d", &size); printf("\nEnter the Elements of Array :- ")' for(i = 0; i < size; i++) scanf("%d", &array[i]; printf("\nThe Elements of entered Array :- "); for(i = 0; i < size; i++) printf("%7d", array[i]); }