Write a C program to accept a character from the user and display it ?
🧾 Program Statement Write a C program to accept a character from the user and displ…
Simple printf() example #include<stdio.h> void main() { printf("\tMy Introduction\n"); printf("Hey Friends I m Srikanth\n&q…
మరింత చదవండిHello world example #include<stdio.h> void main() { printf("Hello World"); } Output: Hello World
మరింత చదవండిFind ASCII Value of a Character. #include <stdio.h> void main() { char ch; printf("Enter a Char:-"); scanf("%c"…
మరింత చదవండిAscii Value to Character #include<stdio.h> void main() { int h; printf("enter a character ascii:\n"); scanf("%d&quo…
మరింత చదవండి🧾 Program Statement Write a C program to accept a character from the user and displ…
Social Plugin