Q27 Write a C program to round numbers. July 12, 2015 Gyantoday Most Important Interview Questions In C Leave a comment Use this statement to round numbers (int)(number < 0 ? (number – 0.5) : (number + 0.5)) Share this: Q95 write a C function to return the number of set bits in an integer.July 27, 2015Most Important Interview Questions In CQ36 Is float a = 22/7 and double b = 22/7 is equal? How to compare floating point numbers?July 15, 2015Most Important Interview Questions In CQ29 Write your own code to generate random number.July 13, 2015Most Important Interview Questions In C