DATA / READ Structure

I am wondering does the Arduino's language have something like with DATA and READ Structure?
For Example from the QBASIC:

for i=1 to 10
read x
print x
next i
end

data 20,10,40,70,11,99,43,12,90

To RUN:
20
10
40
70
11
99
43
12
90

what i am trying is:

DATA 0xc90, 0xc90, 0x710, 0x070, 0xa70

for (int i = 0; i < 5; i++)
{
read X;
irsend.sendSony(X, 12);
}

Thanks!

School assignment?

?..... I just wondering does the Arduino have a reference with DATA/READ ?

what i am trying is:

DATA 0xc90, 0xc90, 0x710, 0x070, 0xa70

for (int i = 0; i < 5; i++)
{
read X;
irsend.sendSony(X, 12);
}

I think you'll need to put the data in an array, and step through it in the for.

manor_royal:
I think you'll need to put the data in an array, and step through it in the for.

Humm... I'll try.