User profile: frescofrs

User info
User name:frescofrs
History
Joined:
Number of posts:14
Latest posts:

multidimensional array
if i declare it normally all under main it works: [code]cin >> n; bool m[n][n];[/code] it only gives...

multidimensional array
I've got this code under main: [code]cout << "n= "; cin >> n; bool m[n][n]; //expected const...

rotate left integer
[code]unsigned int rol32 ( unsigned int x, byte times ){ unsigned int temp=0; for( byte i=0;...

rotate left integer
[code]#include <iostream> #include <stdlib.h> typedef unsigned char byte; using namespace std; ...

logical ror c++ integer 4bytes byte rotation
it's what I've read from some article, i didn't even tried to see how it compiles. and thanks for en...