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. rand() function returns float valueinteger valueany typenone of above Answer: Option B 2. To access the members of structure which symbol is used *-,. Answer: Option D 3. Difference between structure and union is We can define functions within structures but not within a unionWe can define functions within union but not within a structureThe way memory is allocatedThere is no difference Answer: Option C 4. calloc() belongs to which library stdlib.hmalloc.hcalloc.hNone of above 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