Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.80K
1 Posted Topic
Re: magic square
here is the code for magic matrix you can make it more efficient through dynamic arrays [CODE]#include<iostream> #include<iomanip> using namespace std; int main() { int n=3; int MagicSquare[3][3]; for(int i = 0; i < n; i++) { for(int j = 0; j < n; j++) { MagicSquare[i][j] = 0; } …
The End.
Rabia_Akhlaq