C Programming :: Declarations and Initializations
- Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?
-
What will be the output of the following program?
#include<stdio.h> int main() { extern int i; i = 20; printf("%ld ", sizeof(i)); return 0; }