Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
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
~499 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 8

4 Posted Topics

Member Avatar for mymyzzz
Re: SORT

hi, in your code you wrote: for(i= 0; i <scores[9]; i++) as 'i' is index,its value should be 0 to 8 if size of array is 10, so it should be witten like: for(i=0;i<9;i++) i find this mistake only.i dont think there is any mistake in swap function.

Member Avatar for Nick Evan
0
113
Member Avatar for nida afaq

Hi, there is a simple code,but i cant understand the output: [CODE]#include<iostream.h> #include<conio.h> void main() { clrscr(); int x=10; cout<<++x<<" "<<++x<<" "<<++x<<endl; x=10; cout<<x++<<" "<<x++<<" "<<x++<<endl; getch(); }[/CODE] output: 13 12 11 12 11 10

Member Avatar for kvprajapati
0
151
Member Avatar for new2c++
Re: game

hello,i m also a beginner to c++,also i didn't get that why u r taking the @ character only in the last row,but i can give u some ideas i think,first of all i want to suggest that you should mention that which player is pkaying at that time so …

Member Avatar for MosaicFuneral
0
116
Member Avatar for nida afaq

if i want to check that wether the entered character is char type or int type,how can i do that?

Member Avatar for Narue
0
119

The End.