Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~2K People Reached
About Me

student

Favorite Tags
Member Avatar for gauravmishra

[code] #include<iostream> using namespace std; class sample { static int i; public: sample() { cout<<"base:construcotr"<<endl; cout<<this<<endl; } ~sample() { cout<<"destructor"<<endl; cout<<this<<endl; } sample(const sample &s) { cout<<"copyconstructor"<<endl; cout<<this<<endl; } /* sample operator =(sample s) { cout<<"==operator called"<<endl; cout<<&s<<endl; return s; }*/ }; int sample::i=0; sample fun(sample x) { cout<<"hello"<<endl; cout<<&x<<endl; …

Member Avatar for mrnutty
0
107
Member Avatar for gauravmishra

i want to know how to access virtual table for a class this is my attempt to do so ........ [code] #include<iostream> using namespace std; class sample { public: virtual void fun(int q) { cout<<"fun"<<endl; } void g() { int *p=(int *)this; p=(int *)*p; p=(int *)*p; void ( sample::*pfun)(int); pfun=(void(sample::*)(int))p; …

Member Avatar for kvprajapati
0
93
Member Avatar for gauravmishra

hi, i want to make a program that highlights java buttons present on a frame just by bringing mouse over the buttons and this frame may not be part of this program ie it can be from another program but i dont know how to proceed any suggestions.....

Member Avatar for gauravmishra
0
70
Member Avatar for gauravmishra

I want to retrieve the username and password of the current user from a shell script .... how to do this?

Member Avatar for Salem
0
168
Member Avatar for gauravmishra

I have a java program that take snapshots of my screen at say 10 pics per second i want to send it to another computer in the same sequence i tried to send images by writng them one by one on the outputstream OutputStream os=incoming.getOutputStream(); ImageIO.write(img,"jpg",os); but i am able …

Member Avatar for ~s.o.s~
0
952
Member Avatar for gauravmishra

I am trying to take continuous pictures of small window of my screen and create a continuos motion picture sort of thing and display it on the java panel . For this i am taking snapshots of the screen window by using "Robot" class . but the panel is only …

Member Avatar for puneetkay
0
159
Member Avatar for gauravmishra

hi i want to know that what does the scale() method of AffineTransform do i mean when we reduce the size of a image does this transform reduces the number of pixels or something else .........

Member Avatar for gauravmishra
0
100
Member Avatar for gauravmishra
Member Avatar for mellamokb
0
63
Member Avatar for anastacia

hi to all well i know html, css javascrpit php apache and mysql. but now i am learning jsp and I DONT HAVE ANY JAVA PROGRAMMING EXPERIENCE!!!:sad: uptill now i just cant figure out whats java and jsp all about well i know its a serverside scripting for web development …

Member Avatar for raja baba
0
250
Member Avatar for gauravmishra

hi i created a html form in which i took a date as input now how can i determine the day(sunday or monday etc) on that particular date .

Member Avatar for masijade
0
70
Member Avatar for gauravmishra

hi i want to know how to deploy servlets on websphere community edition2

Member Avatar for peter_budo
0
67
Member Avatar for gauravmishra

i want to find make a program for insertion in AVL binary tree therefore i want to find balance factor of a node by subtracting depth of right child from dephth of left child how will i find this depth. i am using array representetion of the tree.

Member Avatar for Duoas
0
90
Member Avatar for gauravmishra

hi iam gaurav 2nd year btech student and programing beginer i want to make a media player for my semester project i know c,c++ and learning visual c# i want to know from where to start and where can i get tutorials for the above job. thanxs in advance

Member Avatar for zandiago
0
71