No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
It should be [CODE] if(15 < Total_minutes <= 30){ [/CODE] You used '{' after if which should be "("
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 …
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 …
I am a software engineer. I have 4 years experience in development using C++/C#/Java development languages.
The End.
attefeh