Wednesday 14 March 2012

Write a program that print your name (C)

It is a simple code in Programming C.

#include<stdio.h>
int main()
{
printf("Enter your name here");
getchar();
return 0;
}

output: Enter your name here

0 comments

Post a Comment

Thanks for comment