Thursday, 6 September 2012

c program Introducing Character Arrays hello world

For beginners
{I am going write the c program but before you need a c compiler(software).there are a lot of compilers(software) for windows 7  like Code::Blocks,dev c++ Download dev c++ its free and install it in your computer.open  dev c++ go to file-->new-->source file.} 


#include<stdio.h>
#include<conio.h>
int main (void)
{
char word[ ] = { 'H', 'e', 'l', 'l', 'o',' ','w','o','r','l','d' };
int i;
for ( i = 0; i < 11; ++i )
printf ("%c", word[i]);
printf ("\n");
getch();
return 0;
}

Output
Hello world


For beginners
{After typing this program go to execute-->compile & run-->a window will pop-up-->give file name:(anything u like)-->save as type: c source files-->click save.}

IS IT HELPFIL? comment.

No comments:

Post a Comment