In This Video:
I have discussed about ASCII value of the characters. And how you can find the ASCII VALUE of a Character in C Programming language.
Source-code:
// C program to print ASCII value of a charecter
#include<stdio.h>
int main(){
char c;
printf("Enter a charecter: ");
scanf("%c", &c);
printf("The ASCII value of the charecter %c is %d", c, c);
return 0;
}
In this series I used to solve C Programming Problems with a very efficient manner and to the point approach.
If you find this video helpful please write "This Video is helpful" in the comments section and share this video with your friends.
Access the Complete Playlist
Comments
Post a Comment
Type your feedback here...