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
Ranked #72.8K
~479 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
c x 2
c++ x 1

2 Posted Topics

Member Avatar for Vish0203

executing EXE file sounds good.........it is easiest way to run or call any program...

Member Avatar for Sky_Flyer
0
195
Member Avatar for srinidelite

*hey there , 1.you can not initialize a 2d array like this...!!!!!!!! char array1[100][100]={'ID1','srini','ID2','Albie','ID3','Kaasi'}; > char array2[50][100]={'ID1','OOPS','ID2','STS','ID1','STS','ID1','CTC','ID3','MAT','ID2','MAT'} You can initialize it as follows: char array1[3][2]={ {'ID1','srini'}, {'ID2','Albie'}, {'ID3','Kaasi'}}; char array2[6][2]={ {'ID1','OOPS'}, {'ID2','STS'}, {'ID1','STS'}, {'ID1','CTC'}, {'ID3','MAT'}, {'ID2','MAT'}}; it will also give you following error " error C2015: too many characters in …

Member Avatar for Sky_Flyer
0
284

The End.