User profile: evy

User info
User name:evy
History
Joined:
Number of posts:9
Latest posts:

Prime Number Code
[code] int i=0; counter=0; for(int i=2;i<(number/2);i++){ if(number%i==0) counter++; } if(counter>0...

need help with my compiler issue
tnx alot ! finnaly discover this issue

need help with my compiler issue
Write your question here. [code] enum Suit { clubs, diamonds, hearts, spades }; const int jac...

stdafx.h problem
i did small project ..when i try to run it the compiler says did you forget to add stdafx.h to you...

To find max and minmum values from pointer
thank you so much mikeboy!! [code] #include<iostream> using namespace std; void max(int* array); vo...