Programming Languages C Objective
Mar 09, 2013

What will be output of the following c code?

#include<stdio.h>
int main()
   {
    printf("%d\t",sizeof(6.5));
    printf("%d\t",sizeof(90000));
    printf("%d",sizeof('A'));
    return 0;
  }

Choose the correct answer:
A) 1 4 8
B) 8 4 1
C) 8 4 4
D) 4 2 1
Detailed Explanation

No Explanation

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback