multidimensional arrayif i declare it normally all under main it works: [code]cin >> n; bool m[n][n];[/code] it only gives...
multidimensional arrayI'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 rotationit's what I've read from some article, i didn't even tried to see how it compiles. and thanks for en...