Questions on Variables in C Language

1. What is a variable in C language? Variables are memory location in computer’s memory to store data. To indicate the memory location, each variable should be given a unique name called identifier. Variable names are just the symbolic representation of a memory location. Examples of variable name are sum, car_no, count etc. int num; … Read more