Question Detail What is wild pointer in c a pointer which we need to write in futurea pointer which has bad naming conventiona pointer which has no limita point which has not initialized Answer: Option D Similar Questions : 1. A member is a Variable in a structureDatatype of structureStructure pointerNone of above Answer: Option A 2. 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 3. 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 4. If (*p) and **p is same NoYes Answer: Option A 5. Adding to a pointer that points to an array will Cause an errorIncrease the value of the element that the pointer is pointing toCause the pointer to point to the next element in the arrayNone of above Answer: Option C Read more from - C Programming Questions Answers - Chapter 1