Showing posts with label Programming C. Show all posts
Showing posts with label Programming C. Show all posts

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...