google.com, pub-6167773875660516, DIRECT, f08c47fec0942fa0 Write a program to illustrate getchar and putchar in c - 2nd puc computer science

Write a program to illustrate getchar and putchar in c

Write a c program to illustrate getchar and putchar

#include<stdio.h>

#include<conio.h>

void main()

{

char ch;

clrscr();

printf("Enter the character: ");

ch=getchar();

printf("Entered character is: ");

putchar(ch);

getch();

}

Output:

Enter the character: f

Entered character is: f

Write a program to illustrate getchar and putchar in c Write a program to illustrate getchar and putchar in c Reviewed by Vision Academy on December 07, 2021 Rating: 5

No comments:

CheckOut

Powered by Blogger.