User profile: diman91

User info
User name:diman91
Name:Dimos Katsimardos
Location:Patras, Greece
Bio:MSc Student @ Univerity Of Patras
History
Joined:
Number of posts:10
Latest posts:

C++ Code Different Behavior Under Different OS
This is what I have done. [code]#define X_constant X_Value[/code] This was the reason that the arra...

C++ Code Different Behavior Under Different OS
[code]int rx[26], S[16]; [/code] are global variables. rx[26] contains decimal int numbers before t...

C++ Code Different Behavior Under Different OS
Before the 2 for loops , S[i] are initialized to zero. I just compiled and run it under https://www...

C++ Code Different Behavior Under Different OS
I do not mean S[i]=0, but a value of another variable. S must be zero, and it is in VS, but like I s...

C++ Code Different Behavior Under Different OS
All my operations are done with integer numbers. Also, I have bitwise operations in later stages of ...