how to write a string 2nd method .
#include<stdio.h>
#include<conio.h>
int main()
{
char a[5]={'i','i','p','s'};
printf("%s",a);
}
output :
iips
This blog is for basic programming tutorial. Mostly programs of c and c++ programming are available here .
Comments
Post a Comment