Search:

Type: Posts; User: getout

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    2,577

    so what will be function for c like getline

    so what will be function for c like getline
  2. Replies
    2
    Views
    1,520

    thx a lot

    thx a lot
  3. Replies
    2
    Views
    1,520

    predefined symbolic constnts

    i have created this program to simple print the values of std. preprocessor constants



    #include <stdio.h>
    int main()
    {
    printf("%d \t %s \t %d \t %d",__LINE__,__FILE__,__DATE__,__TIME__);
    }
  4. Replies
    6
    Views
    2,577

    cool, thx.....let me try to write this down :)

    cool, thx.....let me try to write this down :)
  5. Replies
    6
    Views
    2,577

    Adding line numbers to file

    I want to write a program in which
    1.Number the lines in a file
    2.Display n lines from a given line number.
    3. Delete a particular line
    4. Search for a given word and print all the lines where...
  6. Replies
    10
    Views
    3,299

    thx for the help, i have created the function for...

    thx for the help, i have created the function for mode & it is working properly but when same amount of two numbers is entered it give only one value
    for eg. if 8,8,8 & 7,7,7 is entered in input it...
  7. Replies
    10
    Views
    3,299

    No mode is the element which frequently occurs,...

    No mode is the element which frequently occurs, for eg: 25 values input are 0,0,1,2,3,4,5,6,6,6,6,6,7,8,9,0,6,5,4,3,2,1,7,8,9

    so the mode will be 6

    Now how would be a function for this??
  8. Replies
    10
    Views
    3,299

    Mode (Statistics)

    i have created a menu driven statistics program in which it calculates no. of items, mean, median, mode, variance, standard deviation.
    I have written function for all but except mode. I am not...
  9. Replies
    5
    Views
    1,210

    Efficient Coding??

    Ok the question is this..........

    Write a function that will calculate and display the real roots of the quadratic equation
    ax2 + bx+c = 0
    use the function in the program.

    I have coded this
    ...
  10. Replies
    4
    Views
    9,802

    thx, i m just the beginner :)

    thx, i m just the beginner :)
  11. Replies
    4
    Views
    9,802

    parse error before "{" token

    I have created a program


    #include <stdio.h>
    int main()
    {
    struct cricket
    {
    char player_name[20];
    char team_name[20];
Results 1 to 11 of 11