Computer Science, asked by TbiaSupreme, 1 year ago

Whenever the system reads the character data it is automatically converted into its corresponding ASCII value by the system. State whether the statement is True (or) False And Justify it

Answers

Answered by aqibkincsem
0

The statement is true.

A character variable captures ASCII value which is normally an integer number ranging between 0 and 127 rather than the character itself in C programming. This is  known as ASCII value.

For example, ASCII value of 'A' is 65.That means, if one assign  'A' to a character variable, 65 is entrapped within that variable rather than 'A' itself.

Program to Print ASCII Value:

1)#include <stdio.h>2)int main()3){1)char c; 2)printf("Enter a character: "); 3)// Reads character input from the user: 4)scanf("%c", &c);

Answered by ChromaticSoul
7

Built-in functions are those that are already defined in Python libraries and we can call them directly. User defined functions are those that we define ourselves in our program and then call them wherever we want.

thnks____!!!!_____

Similar questions