Search:

Type: Posts; User: zenox_ruiz

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    796

    So I changed the code to this: printf("\n");...

    So I changed the code to this:


    printf("\n");
    gets(sentence);


    And it finally works! :D

    What's the use of
  2. Replies
    3
    Views
    796

    Frequency not working properly

    We have to make a code to detect the frequency of printable characters.
    But when I run the code, sometimes it can't detect the Uppercase Letters. But it can sometimes. It's a bit buggy, and it...
  3. Replies
    2
    Views
    2,064

    1 to 20 Triangle

    Hi everyone! I need some help to shorten my code.
    We have to use loops, since it's our current lesson.
    We have to make something like this:

    1
    2 2
    3 3 3
    4 4 4 4
    5 5 5 5 5
    6 6 6 6 6 6
  4. Replies
    19
    Views
    2,852

    It worked without the Y/N #include...

    It worked without the Y/N


    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    int main()
    {
    clrscr();
    int z[20],zenox;
  5. Replies
    19
    Views
    2,852

    #include #include...

    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    int main()
    {
    clrscr();
    int z[20],zenox;
    char x;
    printf("Do you want to continue? [Y/N]");
    scanf("%c",&x);
  6. Replies
    19
    Views
    2,852

    #include #include...

    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    int main()
    {
    clrscr();
    int z[20],zenox;
    char x;
    printf("Do you want to continue? [Y/N]");
    scanf("%c",&x);
  7. Replies
    19
    Views
    2,852

    #include #include...

    #include<stdio.h>
    #include<conio.h>
    #include<stdlib.h>
    int main(){
    clrscr;
    int z[20],zenox;
    char x;
    for(zenox=0;zenox<20;zenox++)
    loop:
    {
  8. Replies
    19
    Views
    2,852

    I finally made the array work, but the [Y/N]...

    I finally made the array work, but the [Y/N] doesn't work well. It's always stuck at "Do you want to repeat? [Y/N]"
    Whenever you press any button, the same message appears. Is there anyway to exit...
  9. Replies
    19
    Views
    2,852

    No we haven't learned about it yet, but I'm...

    No we haven't learned about it yet, but I'm currently searching for tutorials.
  10. Replies
    19
    Views
    2,852

    goto and Yes or No problem

    Hi! I'm a newbie. I need to make a program to input grades, then in the end, it will ask if you want to repeat or not. "Do you want to repeat [Y/N]?"

    If yes, it will repeat again. If no, the...
Results 1 to 10 of 10