Search:

Type: Posts; User: simo_mon

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    14,582

    thanks cas, very helpful response :) i got...

    thanks cas, very helpful response :)

    i got confused there for a while.... ;p

    notation is exactly what i was trying to do and now it works great :)

    very cool i can now add any sort of data...
  2. Replies
    4
    Views
    14,582

    array of struct pointers

    hi there,

    i am trying to create an array of struct pointers, set each element in the array to null, and (later) then assign struct values to certain positions within the array... and i am...
  3. Replies
    7
    Views
    1,581

    awesome response_s :):):) thanks very much for...

    awesome response_s :):):) thanks very much for answering :):):)


    its slowly coming together :):)

    its actually really helpful to get a handle on what's actually happening in c with memory:)
    ...
  4. Replies
    7
    Views
    1,581

    question about memory

    i have some general questions about c and memory

    if i go




    char *buff = "timmy";
  5. Replies
    1
    Views
    2,226

    string tok to char arrays

    hi i am having some trouble with string tokenising....





    char line "40,2,240";

    char *result;
    char age[20];
  6. Replies
    8
    Views
    1,782

    thanks for all the helpful responses i have...

    thanks for all the helpful responses i have "kinda" got it ...

    i have been unsuccessful at simply getting a char pointer in main to "point to" a string that i create in some function...

    the...
  7. Replies
    8
    Views
    1,782

    thank you very much for your response and as to...

    thank you very much for your response and as to the first two points i have done some reading now on string literals and understand that they can't be changed ( again thankyou this is great...
  8. Replies
    8
    Views
    1,782

    strings and functions

    hi i am confused about how to change a string from a function

    i try




    int main()
    {
  9. Replies
    3
    Views
    4,789

    char ** and argv memory question

    hi there i am super confused, i am writing a program to launch processess and on my travels i was getting some wierd results from command line arguments that i was attempting to parse ( none of that...
  10. Replies
    9
    Views
    1,630

    thanks for the replies !! and i do understand...

    thanks for the replies !!

    and i do understand the fork code above...... and thanks to another post i think i have an understanding of the processes now, i guess the thing that was throwing me was...
  11. Replies
    2
    Views
    1,838

    thanks heaps totally cool and useful response......

    thanks heaps totally cool and useful response...

    that makes sense of a lot of the code behavior that i have been observing...

    thanks again
  12. Replies
    9
    Views
    1,630

    process execution

    i ran the following code and got strange results....




    int main(int argc, char *argv[] )
    {
    int i =0;

    for(i=0;i<2;i++)
  13. Replies
    2
    Views
    1,838

    parent child process

    hi new to processes have a couple of questions ....


    1 is main() 'the' initial parent process

    ie when i call getppid() is that returning a reference to mains process ?*

    2 when i call...
Results 1 to 13 of 13