C Programming :: Typedef
-
What will be the output of the program?
#includeint main() { typedef int arr[5]; arr iarr = {1, 2, 3, 4, 5}; int i; for(i=0; i4; i++) printf("%d,", iarr[i]); return 0; } -
What will be the output of the program?
#include int main() { typedef int LONG; LONG a=4; LONG b=68; float c=0; c=b; b+=a; printf("%d,", b); printf("%f\n", c); return 0; }

Whatsapp
Facebook