write a program to display 24 99 224 399 in c ( using loop)
Answers
Answered by
1
Answer:
int main()
{
int a[4] = {24,99,224,399},i;
for(I=0;i<4;i++)
{
printf{"%d ",a[i]);
}
}
I hope it will be usefull if u think mark me as a brilliant
Similar questions