Search:

Type: Posts; User: MAx12345

Search: Search took 0.00 seconds.

  1. Thread: sizeof array

    by MAx12345
    Replies
    2
    Views
    2,471

    sizeof array

    Hi,
    Was trying this program



    #include<stdio.h>

    int retsize( int a[] );

    int main()
  2. Replies
    2
    Views
    1,112

    printf confusion

    Hi,
    Here is the code.



    int main()
    {
    int i=10;
    printf(" %d %d \n",++i,i++);
  3. Replies
    16
    Views
    3,695

    Be realistic....... well i do care to put up a...

    Be realistic.......
    well i do care to put up a disclaimer of sorts (" assuming calls like malloc do not fail" )
    which is very wel accepted. i did nail that interview.
  4. Replies
    16
    Views
    3,695

    well, didnt care for that as this was just an...

    well, didnt care for that as this was just an interview question
  5. Replies
    16
    Views
    3,695

    Posting the code, might be of some help for...

    Posting the code,
    might be of some help for somebody.



    main()
    {
    int **n,p;

    n = (int **) malloc (sizeof(int *));
  6. Thread: Threads

    by MAx12345
    Replies
    31
    Views
    4,391

    If its for linux then here is one of many links ...

    If its for linux then here is one of many links

    http://www.yolinux.com/TUTORIALS/LinuxTutorialPosixThreads.html
  7. Replies
    16
    Views
    3,695

    I wish i cud do that. those are the only two...

    I wish i cud do that.

    those are the only two variable i can use (unfortunately :-( )

    this was a question asked in an interview..
  8. Replies
    16
    Views
    3,695

    Pointer assignment

    Hello to everyone,
    this is my first post of many to come :-)
    I was looking for a solution for the following program.



    main()
    {
    int **ptr;
    int i;
Results 1 to 8 of 9