Search:

Type: Posts; User: mkdl750

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    2,637

    However the long long modifier was introduced in...

    However the long long modifier was introduced in the C99 standard; some compilers had already supported it. Be sure to check if your compiler supports C99.

    Max value of long int = +2,147,483,647...
  2. When I compile my C programs, I save it in my...

    When I compile my C programs, I save it in my personal folder which can be other than DOS.
  3. Replies
    4
    Views
    1,567

    thank you very much, now i'll just have to...

    thank you very much, now i'll just have to replace variables with functions. :D
  4. Replies
    4
    Views
    1,567

    Help with using the return statement

    #include <stdio.h>
    char ChangeToNext(char ch);
    main()
    {
    char x;
    printf("Input uppercase letter: ");
    fflush(stdin);
    scanf("%c",&x);
    ChangeToNext(x);
    getch();
  5. Replies
    18
    Views
    2,906

    #include #include main() {...

    #include<stdio.h>
    #include<string.h>
    main()
    {
    struct TimberIDType
    {
    char Zone;
    char ID[10];
    }TimberID;
  6. Replies
    9
    Views
    1,322

    But i made the code, and a recursive is a...

    But i made the code, and a recursive is a function is one that calls itself. Can you proofread it for me? Please?
  7. Replies
    9
    Views
    1,322

    need help with this one #include...

    need help with this one




    #include <stdio.h>
    #include <string.h>

    char CountEvenASCII(char str[255], int a, int x);
  8. Replies
    9
    Views
    1,322

    okay i understand.

    okay i understand.
  9. Replies
    9
    Views
    1,322

    Recursive function

    i need help with this one:



    #include <stdio.h>
    #include <string.h>
    char CountEvenASCII(char str[255], int a, int x);

    main()
    {
  10. Replies
    18
    Views
    2,906

    1st part of timber program

    #include <stdio.h>
    #include <stdlib.h>
    #include <conio.h>
    #include <ctype.h>
    #include <string.h>

    void load_data();
    void save_data();
    void goto_record();
    void enter_details(char edit);
  11. Replies
    1
    Views
    15,486

    Defining structure inside another structure

    for example:




    struct IDType
    {
    char zone;
    char id[10];
    }
  12. Replies
    18
    Views
    2,906

    As of this point in time I have defined the...

    As of this point in time I have defined the necessary structures and variables.

    Here's what will the main menu will look like:



    {...
    //main menu
    int choice1;
  13. Replies
    18
    Views
    2,906

    I did NOT say that you are going to post the...

    I did NOT say that you are going to post the codes. I said that you can give me assistance, hints or advice regarding my program. Sorry about saying that it's not homework. Actually I'm making this C...
  14. Replies
    18
    Views
    2,906

    We'll talk about this later.

    We'll talk about this later.
  15. Replies
    18
    Views
    2,906

    Okay, any further assistance so that I can put...

    Okay, any further assistance so that I can put the segments into a fully-functional program? Please, I want it done by Monday (I'm not kidding).
  16. Replies
    18
    Views
    2,906

    ff stands for "following" in this thread.

    ff stands for "following" in this thread.
  17. Replies
    18
    Views
    2,906

    heres a draft part of the code it isnt finished...

    heres a draft part of the code it isnt finished yet.




    #include <stdio.h>
    #include <string.h>

    struct TimberIDType
    {
  18. Replies
    18
    Views
    2,906

    Help with structures

    Okay I'm going to make a C program (definitely not a homework this time) to keep track of timber (using structures) and I need your assistance.

    Each unit of timber has got an identification code...
  19. Thread: Homework help

    by mkdl750
    Replies
    45
    Views
    18,626

    #include #include void...

    #include <stdio.h>
    #include <string.h>
    void CountEvenASCII(char str[5]);

    main()
    {
    char w[5];
    printf("Input character string: ");
    scanf("&#37;s", w);
    CountEvenASCII(w);
  20. Thread: Homework help

    by mkdl750
    Replies
    45
    Views
    18,626

    how do I convert subquestion e into an iterative...

    how do I convert subquestion e into an iterative statement?
  21. Thread: Homework help

    by mkdl750
    Replies
    45
    Views
    18,626

    Okay how I change the recursive solution into...

    Okay how I change the recursive solution into iterative ones? just remove the while?
  22. Thread: Homework help

    by mkdl750
    Replies
    45
    Views
    18,626

    thanks!

    thanks for your solution :D
  23. Thread: Homework help

    by mkdl750
    Replies
    45
    Views
    18,626

    #include #include void...

    #include <stdio.h>
    #include <string.h>
    void CountEvenASCII(char str[5]);

    main()
    {
    char w[5];
    printf("Input character string: ");
    scanf("&#37;s",w);
    CountEvenASCII(w);
  24. Thread: Homework help

    by mkdl750
    Replies
    45
    Views
    18,626

    You should have posted the meaning here. What I'm...

    You should have posted the meaning here. What I'm talking about is the iterative function in C.
  25. Thread: Homework help

    by mkdl750
    Replies
    45
    Views
    18,626

    what is an iterative statement?

    what is an iterative statement?
Results 1 to 25 of 38
Page 1 of 2 1 2