#include<studio.h>
Int main()
{
Int my num=15;
float my float num=5.99;
Char my letter='D' ;
Printf{"%d\n",my num);
Printf{"%f\n",my float num);
Printf{"%c\n",my letter);
Return 0;
}
Sandhya Answered question May 29, 2023
A variable is a way of storing information in a computer program. Think of a variable like a container and the name of the variable as the label on the container which shows us what is inside. Variables are used in coding and programming to help coders understand, remember, and use the information in the program.
BrindhaPrathaban Answered question May 25, 2023
