#include <stdio.h>
int main(void)
{
int i;
char anika[5]={"ANIKA"};
for(i=0;i<5;i++)
{
printf("%c",anika[i]);
}
system("pause");
return 0;
}
This is the output:
ANIKA
Programming is the most easiest thing in the world and that's why make fun with it and be a Expert of it.
#include <stdio.h>
int main(void)
{
int i;
char anika[5]={"ANIKA"};
for(i=0;i<5;i++)
{
printf("%c",anika[i]);
}
system("pause");
return 0;
}
This is the output:
ANIKA
Labels: Array One Dimension
All rights reserved||Using Deluxe Template By Klodian
0 comments:
Post a Comment