Question Detail A variable in c must have a valid datatypecan't have a name same as keywordmust have a name starting with a characterAll of above Answer: Option D Similar Questions : 1. Difference between calloc() and malloc() calloc() takes a single argument while malloc() needs two argumentsmalloc() takes a single argument while calloc() needs two argumentsmalloc() initializes the allocated memory to ZEROcalloc() initializes the allocated memory to NULL Answer: Option B 2. If include files can be nested YesNo Answer: Option A 3. Continue statement used for To continue to the next line of codeTo stop the current iteration and begin the next iteration from the beginningTo handle run time errorNone of above Answer: Option B 4. Structures can be used to hold different datatypeshave pointers to structuresto assign to one anotherall of above Answer: Option D 5. If (*p) and **p is same NoYes Answer: Option A Read more from - C Programming Questions Answers - Chapter 1