Search:

Type: Posts; User: EdwardElric

Search: Search took 0.00 seconds.

  1. Counting each letter separately and followed by...

    Counting each letter separately
    and followed by the numbers stuff....

    if u have the book
    its on
    C by dissection 4th edition page 307, lesson 9.2
  2. No that question is part of my upper code.... ...

    No that question is part of my upper code....


    This is the output of the program
    A: 75 B: 52 C: 219 D:14 E:121 F: 13
    G: 9 ......... up to Z

    This is what my problem lies what are...
  3. This program cant still run and i tried what you...

    This program cant still run and i tried what you did
    Only some blank screen appeared


    printf ("\n\n");
    clearerr(stdin);
    getchar();
    return 0;
  4. can u help me understand what this pogram does?

    Im using Dev C++ and this program cant run....
    This is an example from arrays book from C by dissection


    /* Count each uppercase letters separately */

    #include <stdio.h>
    #include <conio.h>...
  5. Thread: For loop

    by EdwardElric
    Replies
    6
    Views
    1,710

    yeah tried doing that but when i entered -4 it...

    yeah tried doing that but when i entered
    -4
    it exits the program
  6. Thread: For loop

    by EdwardElric
    Replies
    6
    Views
    1,710

    For loop

    Write a program that reads in an integer value for n and then sums the integers from n to 2*n if n is nonnegative, or from 2 *n to n if n is negative. Write the code using for loops.

    My problem...
  7. Replies
    7
    Views
    1,544

    Help with a project:

    PHONEBOOK:
    enter name:
    enter address:
    TEL. No.:
    Mobile Number:
    ^ Finished


    The project must
    1.) ADD ENTRY
  8. Replies
    5
    Views
    1,511

    Alphabetical orders using string

    Im just a beginner btw so i need help how to do this
    Ask 3 strings and arrange them in alphabetical order:




    #include <stdio.h>
    #include <conio.h>

    main()
  9. Replies
    3
    Views
    5,359

    thx for the help

    thx for the help
  10. Replies
    3
    Views
    5,359

    Choices using the if statements

    What this program should do is to enter radius then pick choices....
    but it doesn't seem to work
    the problem lies with the choice part in which when you type A or a, it will output the radius......
  11. Replies
    10
    Views
    1,443

    thanks for the help! just figured out how to...

    thanks for the help!

    just figured out how to do it:


    #include <stdio.h>
    #include <conio.h>

    void display(void);
  12. Replies
    10
    Views
    1,443

    yeah i think this is similar #include...

    yeah i think this is similar


    #include <stdio.h>
    #include <conio.h>

    display();
    display();
    display();
    display();
  13. Replies
    10
    Views
    1,443

    but i cant use loops yet

    but i cant use loops yet
  14. Replies
    10
    Views
    1,443

    displaying this program 5 times

    Hi!
    im trying to make a program that will display this 5 times...
    our instructor told us that we will use display(); command as a function...
    i dont even know what that is.... what i did to make...
  15. Replies
    11
    Views
    17,674

    yeah i know its up to date but thats what our...

    yeah i know its up to date but thats what our university is using... i dunno why i think its because its basic programming... yeah im a CompE major btw
    thanks for all the advices
  16. Replies
    11
    Views
    17,674

    but thats what we used in our basic programming...

    but thats what we used in our basic programming class

    thanks for the advice
  17. Replies
    11
    Views
    17,674

    thank you

    it worked well thanks :D
  18. Replies
    11
    Views
    17,674

    tried that and the signed float function but...

    tried that and the signed float function but still doesnt work



    #include <stdio.h>
    #include <conio.h>

    main()
    {
    signed float C;
  19. Replies
    11
    Views
    17,674

    Converting Farenheit to Celcius: - Turbo C

    hi i am a newbie in programming C and just learning the basics as of now:
    converting Celsius to Farenheit
    and im using Turbo C btw:



    #include <stdio.h>
    #include <conio.h>

    main()
Results 1 to 19 of 19