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.

0 Endorsements
~10.3K People Reached
Favorite Forums
Favorite Tags
c++ x 3
c x 1

3 Posted Topics

Member Avatar for ziyadgodil

how convert this code into structure in c plz help me [CODE]class car { private: int x1,y1,x2,y2,col,col2,col3; public: car():x1(200),y1(300),x2(270),y2(200),col(4) {} car(int a,int b,int c,int d,int e,int f,int g):x1(a),y1(b),x2(c),y2(d),col(e),col2(f),col3(g) {} }[/CODE]

0
49
Member Avatar for ziyadgodil

i hav car racing program in c++ and i wish to convert this program in c what i do? prigram is this...... [CODE] #include <iostream.h> #include <dos.h> #include <graphics.h> #include <conio.h> #include <stdlib.h> #include <stdio.h> #include <time.h> #include <ctype.h> class car { private: int x1,y1,x2,y2,col,col2,col3; public: car():x1(200),y1(300),x2(270),y2(200),col(4) {} car(int a,int …

Member Avatar for Taywin
0
568
Member Avatar for niyasc

The End.