C Programming
1) | Which of the statements is correct about the program? #include<stdio.h> int main() { float a=3.14; char *j; j = (char*)&a; printf("%d\n", *j); return 0; } |
1) | Which of the statements is correct about the program? #include<stdio.h> int main() { float a=3.14; char *j; j = (char*)&a; printf("%d\n", *j); return 0; } |