Computer Science, asked by timesclasses, 1 year ago

you cannot declare more than one variable of Same data type using a single statement at the time of initialisation​

Answers

Answered by Anonymous
3

Don't get confused... Its very simple...consider following for loop...

int i;

for(i=0; i<5; i++)

{

    printf("%d", i);

}

Here I have defined i as int only once but i am assigning or declaring it multiple times i.e. from 0 to 4...

BE YOURS........^_^


timesclasses: this question which i have asked is true aur false
Anonymous: its false
Anonymous: A variable is nothing but a name given to a storage area that our programs can manipulate.
Similar questions