Search:

Type: Posts; User: asanchez1171

Search: Search took 0.00 seconds.

  1. Thread: c program

    by asanchez1171
    Replies
    3
    Views
    1,430

    c program

    I have this program that I wrote a few weeks ago:


    #include<stdio.h>
    #include<conio.h>
    int main()
    {
    float grade;
    printf("\nEnter Grade:\n");
    scanf("%f", &grade);
  2. Replies
    4
    Views
    2,450

    thanks for the link it was very helpful

    thanks for the link it was very helpful
  3. Replies
    2
    Views
    15,035

    Thank you for your help :biggrin:

    Thank you for your help :biggrin:
  4. Replies
    1
    Views
    1,609

    Help with infinite loops

    #include<stdio.h>
    int main(){
    for(;;) {
    printf("%d ",10);
    }
    return 0;
    }


    The output is an infinite loop. What causes it to be an infinite loop?
  5. Replies
    4
    Views
    2,450

    This is an code was given to me to run and...

    This is an code was given to me to run and explain why i got it. I just wanted to know how I got this output.
  6. Replies
    2
    Views
    15,035

    C programming (for loops)

    #include<stdio.h>
    int main(){
    int i=1;
    for(i=0;i=-1;i=1) {
    printf("%d ",i);
    if(i!=1) break;
    }
    return 0;
    }
  7. Replies
    4
    Views
    2,450

    i need help ASAP Please

    #include<stdio.h>
    int main(){
    int x=011,i;
    for(i=0;i<x;i+=3){
    printf("Start ");
    continue;
    printf("End");
    }
    return 0;
    }
Results 1 to 7 of 7