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

void main() { int i = 0; if (i == 0) { printf("Hello"); continue; } }

Foolish Frog answered on October 26, 2021 Popularity 1/10 Helpfulness 1/10

Contents


More Related Answers

  • public void test() { for (int i=0; i<=a.length; i++) { if (item == a[i] && first == 0) flag = true; first = i; } if (item == a[i]) { last = i; } }
  • #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; }
  • #include <stdio.h> int main (void) { int a, b; printf("Dwse mou dio akeraious arithmous: \n"); scanf("%d %d", &a, &b); printf("Oi arithmoi poy edwses einai: %d kai %d", a, b); return 0; }
  • #include<stdio.h> int main() { for(5;2;2) printf("Hello"); 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 fun( ) { static int num = 10; //static int num; //num = 10; //static => initialized only once -- when program is started ( like global variables ) num++; printf("num = %d\n",num); } int main( ) {
  • #include<stdio.h> void main() { int arr[50],f=-1,r=-1,n,a,b; do{ printf("Press 1 for Enqueue\n2 for Peek\n3 for Dequeue\n4 for exit\n"); scanf("%d",&a); switch (a) { case 1: for(int i=0;i<n;i++){ if(i==0){ prin
  • #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 int main(){ int i,j; i=j=2,3; while(--i&&j++) printf(%d %d,i,j); return 0; }

  • void main() { int i = 0; if (i == 0) { printf("Hello"); continue; } }

    0
    Popularity 1/10 Helpfulness 1/10 Language whatever
    Source: Grepper
    Tags: int void whatever
    Link to this answer
    Share Copy Link
    Contributed on Oct 26 2021
    Foolish Frog
    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.