Thursday, March 6, 2014
What does isalnum (int) do?
›
Returns a nonzero integer if the argument is any lower- or uppercase letter or 0-9 digit. Otherwise, it returns the integer 0.
What is BUFSIZ?
›
BUFSIZ is a constant macro representing the size of the input buffer. It is defined in stdio.h and represents the size for your C implementa...
Thursday, January 12, 2012
What would be the result of the expression -6/5?
›
The ANSI C standard says that the result is "implementation defined." This means that ANSI C has no hard and fast rule, therefore,...
Wednesday, January 11, 2012
What happens if we try to assign an integer type value to a float type variable?
›
C puts a decimal point at the end and converts the method of storage to exponential binary form and store the result in the variable's m...
Tuesday, January 10, 2012
What happens if we try to assign a real type value to a variable that has been declared to be int?
›
C cuts off the fractional part of the real value, converts the remaining part to int, and stores the result in 2's complement binary for...
›
Home
View web version