Chapter 1 practice set source code
Source code Do you remember that I have give you a practice set so now I will give you the answers of the questions and the prompts that will help for your future in the C programming. First I want to answer the conceptual based questions that I give you to see your concepts and foundation in basics. Question no. 1: What are variables? Variables are like the container and the box that are used to store the values. Question no. 2: What is the format specifier for integer? The format specifier that is used to represent integers is %d. Question no. 3: Which format specifier is this: %f. This format specifier is for float. Question no. 4: What are comments? Give atleast one use of them. Comments are the stemtement that are created for user that are ignored by the compiler. The use of comments is that it is useful for the person who is learning the C language or to ment...