please tell me correct answer
Attachments:
Answers
Answered by
0
Answer:
hope it helps you
Explanation:
int main()
{
char ch; // variable declaration
printf("Enter a character");
scanf("%c",&ch); // user input
printf("\n The ascii value of the ch variable is : %d", ch);
return 0;
}
Similar questions