Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

3 Endorsements
Ranked #486
Ranked #31.8K
Ranked #4K
~322 People Reached
Favorite Forums
Favorite Tags
c x 5
java x 1
Member Avatar for peste19

I am reviewing material i have covered in c and i wrote up some notes and i am getting an error, i was hoping if someone could help me with this #include <stdio.h> #include <stdlib.h> #include <string.h> struct node{ int data; struct node *next; }; void addtobegining(int); void traverse(); struct …

Member Avatar for wahidbashacse
0
120
Member Avatar for vinnitro

I new to java's applet programming & there is a problem in my program This is my program: import javax.swing.*; import java.awt.*; import java.awt.event.*; /*<applet code=Rect height=600 width=800></applet>*/ public class Rect extends JApplet implements ActionListener { JLabel jl1,jl2,jl3,jl4; JTextField jt1,jt2,jt3,jt4; JButton jb; int x1,x2,y1,y2; public void init() { Container c=getContentPane(); …

Member Avatar for vinnitro
0
202