In C programming, variables are used to store data that can be manipulated and used in the program. There are several types of variables in C, including:
int age=30;
float pi = 3.14;
har grade = 'A';
int numbers[5] = {1, 2, 3, 4, 5};
int *ptr = &age;
struct Person { char name[50]; int age; };
union Data { int i; float f; char str[20]; };
With supporting text below as a natural lead-in to additional content.