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

int a, b, c, d, e, sum, avg; printf("Enter three numbers:"); scanf("%d", &a); printf("b: "); scanf("%d", &b); printf("c: "); scanf("%d", &c); printf("d: "); scanf("%d", &d); printf("e: "); scanf("%d", &e); sum=a

Nada Ashraf Mahmoud answered on November 5, 2022 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers

  • #include<stdio.h> int main() { int n; scanf("%d",&n); int ar[n]; int count=0; for(int i=0;i<n;i++) { scanf("%d",&ar[i]); } for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { if(ar[i]==ar[j]) { count=count+1; } else { count=0; } } } printf("%d\n",(count)/2); }
  • #include<stdio.h> main () { int a; printf("Enter the number:"); scanf("%d",&a); printf("the number was:",a); return 0; }
  • printf("%d", 10 ? 0 ? 5:1:1:12) what will print
  • #include <stdio.h> int main() { int num,i=1; printf("Enter the number whose table you want to print?"); scanf("%d",&num); table: printf("%d x %d = %d\n",num,i,num*i); i++; if(i<=10) goto table; }
  • #include <stdio.h> int main() { int num,i=1; printf("Enter the number whose table you want to print?"); scanf("%d",&num); table: printf("%d x %d = %d\n",num,i,num*i); i++; if(i<=10) goto table; }
  • printf(\nConstant values are %d and %.2f/n,x,PI); means in c
  • printf(\nConstant values are %d and %.2f/n,x,PI); means in c
  • #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
  • printf("%d", 10 ? 0 ? 5:1:1:12) what will print

  • int a, b, c, d, e, sum, avg; printf("Enter three numbers:"); scanf("%d", &a); printf("b: "); scanf("%d", &b); printf("c: "); scanf("%d", &c); printf("d: "); scanf("%d", &d); printf("e: "); scanf("%d", &e); sum=a

    0
    Popularity 1/10 Helpfulness 1/10 Language whatever
    Source: Grepper
    Tags: int whatever
    Link to this answer
    Share Copy Link
    Contributed on Nov 05 2022
    Nada Ashraf Mahmoud
    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.