C Language
Pages
(Move to ...)
Main
C Concepts
C Questions
▼
Tuesday, 22 January 2013
Getchar() function
#include<stdio.h>
#include<conio.h>
void main()
{
char ch;
clrscr();
printf("Enter the character:");
ch=getchar();
printf("The character is %c",ch);
getch();
}
Getchar() function
Getchar() function
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment