User profile: Vins3Xtreme

User info
User name:Vins3Xtreme
Name:Vincenzo
Location:Italia
Bio:Ingegnere Informatico
History
Joined:
Number of posts:85
Latest posts:

vector of vectors into a struct
because you use C++, you should use 'new' and 'delete' operators instead of 'malloc' , 'realloc' and...

c++ Count the number of occurrences of sequences of N (acquired through user input) or more consecutive 'T's
[code] #include <cstdlib> #include <iostream> #include <cstring> using namespace std; int CountOcc...

C++ code for car parking system
Do you want to implement queue yourself? In this case you can implement it as dynamic array or linke...

mean, median and mode.
you should order the array of numbers before you calculate the median or mode. in C++ you can use 'q...

[Variable name]*
the '*' symbol means 'pointer of' , then 'unsigned int *' is 'pointer of unsigned int' . when you wr...