User Profile

Collapse

Profile Sidebar

Collapse
agsupriya86
agsupriya86
Last Activity: Dec 2 '07, 06:15 AM
Joined: Mar 31 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • agsupriya86
    started a topic taking union of two array elements
    in Java

    taking union of two array elements

    Hi,

    I have a LinkedList of arrays ,Each array containing certain keywords..i need to take the union of all keywords presents in all the arrays of the linked list...that is removing the duplicates words and then combining all..

    Can u please prvide me with some help regarding this??
    See more | Go to post

  • agsupriya86
    started a topic random numbers..
    in C

    random numbers..

    hello.

    I want to write my own random number generator..can anyone help me how to approach the problem??
    See more | Go to post

  • agsupriya86
    started a topic query!!
    in C

    query!!

    Hello,

    Can anybody explain me the difference between 0123 and 123 in C??

    I read somewhere its saying 40..how???
    See more | Go to post

  • agsupriya86
    started a topic How is a compiler created?
    in C

    How is a compiler created?

    hi,

    can anybody explain me..
    If compiler for c is written in c language, which is used to complie the compiler?
    See more | Go to post

  • agsupriya86
    replied to erroneus statement
    in C
    i guess the first one is an array of pointers..

    second one is pointer to an array..

    third one is a function returning a pointer to an int and having two ints as an arguments..

    fourth one is again an array of pointers..

    5th one is a pointer to an array..but am not sure abt it..please verify me .....
    See more | Go to post

    Leave a comment:


  • agsupriya86
    started a topic erroneus statement
    in C

    erroneus statement

    which is the erroneous statement among following??



    Int *p[3]

    Int (*p)[3]

    (Int *)(int ,int)

    Int (*p[3])

    Int *(p[3])
    See more | Go to post

  • agsupriya86
    started a topic query regarding objects
    in C

    query regarding objects

    hi.

    Each C++ object possesses the 4 member fns,(which can be declared by the
    programmer explicitly or by the implementation if they are not available). What
    are those 4 functions?

    i know two functions;const ructors and destructors but which are the other two??
    See more | Go to post

  • agsupriya86
    started a topic operator which cant be inherited??
    in C

    operator which cant be inherited??

    hello,

    can anyone tell me which is the operator in c++ which can be overloaded but cannot be inherited??
    See more | Go to post

  • agsupriya86
    started a topic explanation required
    in C

    explanation required

    can anybody explain the output fr the belw code??

    Code:
    int main()
    {
    {char c=-64;
    int i=-32;
    unsigned int u =-16;
    if(c>i)
    {printf("pass1,");
    if(c<u)
    printf("pass2");
    else
    printf("Fail2");
    }
    else
    printf("Fail1");
    if(i<u)
    printf("pass2");
    else
    printf("Fail2");
    ...
    See more | Go to post

  • agsupriya86
    started a topic Reading link list backwards.
    in C

    Reading link list backwards.

    Hello,

    Can anyone tell me how to read a link list backwards?? The link list is single link list not a doubly one..
    See more | Go to post

  • agsupriya86
    replied to Null pointer assignmnet error
    in C
    Im still not clear about the concept behind the error..I wanna know why this error occurs and how can we debug it??...
    See more | Go to post

    Leave a comment:


  • agsupriya86
    started a topic Null pointer assignmnet error
    in C

    Null pointer assignmnet error

    Hello!

    i wanna know about the illfamos null pointer assignmnet error..when can we face such an error and how do we debug it??
    See more | Go to post

  • agsupriya86
    started a topic function prototype
    in C

    function prototype

    In C/C++ do we really need to mention a function prototype everytime..

    if the function is defined before its being called..do we need its prototype?
    See more | Go to post

  • agsupriya86
    replied to delay function [in wxPython]
    Thanx,it worked !...
    See more | Go to post

    Leave a comment:


  • agsupriya86
    replied to delay function [in wxPython]
    Hi,

    I found one function time.sleep(sec) for delaying only.But im not getting how to implement it in my code to solve my purpose of displaying the text for 15 sec and then hiding it!
    Code:
    def help(self,event):
            display3="hello"
            time.sleep(15)
            self.text_ctrl_3.SetValue(display3)
            
            time.sleep(5)
            display3=""
            se
    ...
    See more | Go to post

    Leave a comment:


  • agsupriya86
    replied to delay function [in wxPython]
    Hi,
    Thanx for the suggestion ,It worked !
    Now i want to add one more thing that is when i click the button some text is to be displayed on text control for a minute and after that i need to hide it or remove it..
    Do i have a function for that??
    Code:
    def OnPress(self, event):
            # wxGlade: MyFrame.<event_handler>
            display2=language_processor.message()
            self.text_ctrl_2.SetValue(display2)
    ...
    See more | Go to post

    Leave a comment:


  • agsupriya86
    started a topic delay function [in wxPython]

    delay function [in wxPython]

    Hi,
    I need to add some delay function to my code where on clicking the exit button some text needs to be displayed on the text area..
    Right now the text is not not appearing coz there s no dealy between 2 events of closing and displaying text.

    following is my code for exit and i need to add a pause or delay between two events:
    Code:
    def OnExit(self, event):
            # wxGlade: MyFrame.<event_handler>
    ...
    See more | Go to post
    Last edited by bartonc; May 2 '07, 06:56 PM. Reason: Added [CODE] [/CODE] tags

  • agsupriya86
    started a topic movable text

    movable text

    Hi,
    Does anybody know how to make a text moving in the text area??
    See more | Go to post

  • agsupriya86
    replied to repaint function in wxPython
    Actually the Image.Update() dint worked ..dunno why..but i found self.Refresh(Tr ue)
    to be useful.:)
    Thanx a ton for your help!...
    See more | Go to post

    Leave a comment:


  • agsupriya86
    started a topic repaint function in wxPython

    repaint function in wxPython

    Im setting an image over a panel everytime a button is clicked but that image takes some time to set..that means i need to repaint it..do i have a function for this purpose in wxglade??

    Any help??..its urgent!
    See more | Go to post
No activity results to display
Show More
Working...