Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

What will be output when you will execute 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;

Victorious Vulture answered on May 3, 2020 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers

  • #include<stdio.h> main () { int a; printf("Enter the number:"); scanf("%d",&a); printf("the number was:",a); return 0; }
  • #include <stdio.h> int main() { // printf() displays the string inside quotation printf("Hello, World!"); return 0; }
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include<stdio.h> main() { int *p = 15; printf("%d",*p); }
  • #include<stdio.h> int main() { for(5;2;2) printf("Hello"); return 0; }
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include <stdio.h> int main() { int x = 5; if (x = 0) printf("Case 1"); else if(x == 0) printf("Case 2"); else printf("Case 3"); }
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include<stdio.h> int main() { //output a line printf("Hello world!"); }
  • #include <stdio.h> int main() { int a,b,c; scanf("%d %d%d", &a, &b ,&c); if (a == b && b==c) { printf("No\n"); } else if{a!=b && b!==c && c!==a) printf("No\n"); }else{ printf("Yes"); } return 0; } fix
  • #include <stdio.h> int main() { int x=(20||40)&&(10); printf("%d",x); return 0; }

  • What will be output when you will execute 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;

    0
    Popularity 1/10 Helpfulness 1/10 Language whatever
    Source: Grepper
    Link to this answer
    Share Copy Link
    Contributed on Sep 30 2021
    Victorious Vulture
    0 Answers  Avg Quality 2/10

    Closely Related Answers



    0
    Popularity 1/10 Helpfulness 1/10 Language whatever
    Link to this answer
    Share Copy Link
    Contributed on May 03 2020
    Dizzy Dotterel
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.