These are objects to store values.
Assignment operator
Variable
float
int
Which is the correct way of declaring a variable in C?
float num 9;
float num = 9.5
float num = 9;
float 1num = 9.5;
The three parts required in variable declaration are data type, variable name, and ______
;
scanf()
<stdio.h>
=
A whole number data type that can hold values from ±2147483647
long int
long float
A data type with floating point values that can hold up to 15 decimals.
double