Search:

Type: Posts; User: alice06

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    1,105

    File Handling problem, please help

    I have a data file, data.txt

    1 0.011070 0.5100 0.4900 1.0211
    9 2
    11 19 8 7
    2 0.021373 0.1000 0.0870 1.1332
    8 13
    6 14 5 9
    and so on..
  2. Replies
    2
    Views
    1,255

    Thanx anduril

    Thanx anduril,

    I am trying it & have been trying it with some success.

    Thanx a lot for replying.

    Regards
    Alice
  3. Replies
    2
    Views
    1,255

    How to interface Pajek with C/C++

    Hello all,

    I have made a C program that produces data for food-web network i.e. it generates the data of network consisting of species (NODES) and predator-prey interactions (LINKS). As my program...
  4. How to use decimals in while loop in shell script

    Hi all

    I hav written a very small shell script in bin bash & its not working. The script is ::


    #!/bin/bash
    i=1.0
    while [ $i -le 3.0 ]
    do
    i=`expr "$i + 0.5" | bc`;
  5. Replies
    6
    Views
    3,539

    Re: How to use Pointer inside a Structure

    Thanx a ton tabstop, nonoob, anduril462

    I have developed a short code (using calloc). Can u please check it carefully if I have made any mistakes ,like memory leaks etc.. (although I have...
  6. Replies
    6
    Views
    3,539

    How to use Pointer inside a Structure

    I hav made a structure in my C program:


    typedef struct species
    { int Trophic;
    int Niche[10000];
    } species;


    So each species has a Trophic value and a Niche array.
  7. Replies
    1
    Views
    930

    Please Kindly Help me with shell script

    Hi all

    I run my program prog.c in the following way :


    $ ./prog 1 > output.txt

    where 1 is a user defined initial value used by the program.

    But now I want to run it for many a thousand...
  8. Replies
    2
    Views
    2,296

    Thanx

    Thank u very much Salem for replying.
    A person can never know everything. He is always learning.

    Regards
    Alice
  9. Replies
    2
    Views
    2,296

    parallel programming on clusters

    Hi all

    I am a Ph.D student of Physics and recently a cluster of 32 nodes has been installed in my department. Since I am a senior and do a lot of programming in C (as I make mathematical models...
  10. Replies
    2
    Views
    1,389

    Solved: Makefile problem

    Thanx brewbuck,

    What u said has worked.

    Thanks a lot. This forum is great.

    Alice
  11. Replies
    2
    Views
    1,389

    please help with the Makefile

    Hi All

    I am a Ph.D student in Physics and a newbie in programing. I am running a code made by someone else and now I am stuck badly at a point.
    I have a set of C codes [A1.c, A2.c, A3.c, A4.c]....
Results 1 to 11 of 11