Horje
ASCII Value Code Example
ASCII Value

#include <stdio.h>
int main()
{
    char chr;
    printf("Enter a character: ");
    scanf("%c", &chr);
  
    \\ When %c is used, a character is displayed
    printf("You entered %c.\n",chr);
  
    \\ When %d is used, ASCII value is displayed
    printf("ASCII value is %d.",chr);
    return 0;
}
ascii values
aswin
ascii values
nothing go to hell




C

Related
Assets/Scripts/UIManager.cs(65,13): error CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement Code Example Assets/Scripts/UIManager.cs(65,13): error CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement Code Example
batteries included Code Example batteries included Code Example
C/c   drop mime Code Example C/c drop mime Code Example
Print the number 0 using write() Code Example Print the number 0 using write() Code Example
Command to compile and execute a c file program consecutively Code Example Command to compile and execute a c file program consecutively Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9