Search:

Type: Posts; User: poorman

Search: Search took 0.01 seconds.

  1. Thread: putc question

    by poorman
    Replies
    2
    Views
    1,262

    putc question

    Hello,

    In this program. When i use puts it works, why
    putc not work?


    #include<stdio.h>

    int main(void)
    {
  2. Thread: runtime error

    by poorman
    Replies
    1
    Views
    1,375

    runtime error

    I am using Visual c++ 6
    Every time i run this program i got a message
    runtime error.

    Can anyone tell me what's wrong in my program?
    Thank

    #include<stdio.h>

    #define SMALL_PIZAA 8.50
  3. Thread: for

    by poorman
    Replies
    8
    Views
    1,361

    What's wrong in this program? How to fix it? ...

    What's wrong in this program?
    How to fix it?

    use loop to terminates when the difference between
    two succesive values of e differ by less than
    0.0000001

    #include<stdio.h>

    void getLimit(int...
  4. Thread: for

    by poorman
    Replies
    8
    Views
    1,361

    for

    Euler's equation
  5. Thread: confused

    by poorman
    Replies
    4
    Views
    1,024

    for

    for(i=1; i<=limit; i++)
    {

    tot += (1*1) + (1*2) + (1*2*3) + (1*2*3*4) + (limit-1)
    =
    (4-1)
    = ...
  6. Thread: for

    by poorman
    Replies
    8
    Views
    1,361

    for

    if limit is 4

    how to use for calculat this program?


    #include<stdio.h>

    int main(void)
    {
    double tpt =0;
  7. Replies
    2
    Views
    1,561

    find out values

    My question is how to find out
    how many values of the variable num
    used to completely test all branches of the
    following code?


    if(num>0)
    if(value<25)
    {
    value = 10*num;
  8. Thread: clear screen

    by poorman
    Replies
    15
    Views
    2,366

    clear screen

    Anyone know how to use
    clear screen
    clrscr

    or in which library. I don't see any in the book.
  9. Replies
    1
    Views
    1,085

    function receive the array as a pointers

    :confused: :confused: :confused:
    Hello:

    My question is why my average are all 43.6
    How to fix it?
    Thank

    #include<stdio.h>
    #include<stdlib.h>
  10. Replies
    1
    Views
    2,342

    FILE input/output and ARRAY

    :confused:

    Hello


    Why my program can't display a table???
    what's wrong in my program?
    thnak
  11. Replies
    1
    Views
    864

    pointers with array

    Here's my program.

    Can anyone tell me how to use pointer points
    to the data in ascending and other pointers
    point to the data in descending, but keep the
    original?

    #include<stdio.h>...
Results 1 to 11 of 11