1.

#include<stdio.h> int main() {     double x = 1.2;     int sum = (int)x + 1;       printf(""sum = %d"", sum);       return 0; } 
6.In Implicit type conversion, If an operand of long int is present then the other operand will be converted to ?

A. unsigned int
B. unsigned long int
C. float
D. long int
Answer» E.


Discussion

No Comment Found