CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: anubhav.jain

Search: Search took 0.03 seconds.

  1. Replies
    0
    Views
    610

    Loading a xml file

    Hi,
    I am new to JSP.

    I want to upload a xml file for so that I can parse it.

    I have written the following code for it.


    alert("AJ=======In Tvl.getdata");
    var xmlDoc=null;
  2. Replies
    3
    Views
    2,255

    Re: Problem with enum

    It isn't giving any error for me.




    $ gcc -g 1.c
    $ ./a.out
    0
    1 January
    2 February
  3. Replies
    4
    Views
    1,340

    Re: Segmentation fault

    Hi Paul,

    Thanks for the reply.

    Yes I can see the issue. Thanks for correcting me.

    Also, I can see only one thread id when printing thread ids for all the threads.
    Why is that so?
  4. Replies
    4
    Views
    1,340

    Segmentation fault

    Hi, I am new to Multi-threading programming.
    This might be a silly question but I am not being able to get the bug.

    #include<iostream>
    #include<pthread.h>

    using namespace std;

    void...
  5. Replies
    2
    Views
    741

    Different o/p with C and C++

    C code :

    int main()
    {
    const int a=12;
    int *b;
    b=(int *)&a;
    *b=100;
    printf("%d",a);
    }
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured