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 #4K
~5K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

4 Posted Topics

Member Avatar for plang007

It should be [CODE] if(15 < Total_minutes <= 30){ [/CODE] You used '{' after if which should be "("

Member Avatar for rxlim
0
159
Member Avatar for jogieglenmait

First of all, you should save the number of elements in a variable, e.g. int productNumber. Each time you add a product, you should increase this variable and you should decrease it in case of deleting products. So when you want to add a new element, you should do as …

Member Avatar for attefeh
0
160
Member Avatar for riotburn

For 1D (n * 1): [CODE]int* array = new int[n];[/CODE] It will create an array with the size of n For 2D (n * m): [CODE]int ** array = new int * [n]; for (int i = 0; i < n; i++) array[i] = new int[m];[/CODE] It will create a …

Member Avatar for attefeh
0
5K
Member Avatar for attefeh

I am a software engineer. I have 4 years experience in development using C++/C#/Java development languages.

Member Avatar for red angel
0
46

The End.