Question Detail Out of following program : float x = 10.7; int i; i = (int) x; print i; nullerror10garbage value Answer: Option C Similar Questions : 1. 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 2. If include files can be nested YesNo Answer: Option A 3. Wild pointer in C if pointer is pointing to a memory location from where variable has been deletedif pointer has not been initializedif pointer has not defined properlyif pointer pointing to more than one variable Answer: Option B 4. 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 5. What is the purpose of getc() read a character from STDINread a character from a fileread all fileread file random Answer: Option B Read more from - C Programming Questions Answers - Chapter 1