Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by Ana Maria MAdrigal ( 16 years ago )
#include <cstdlib>
#include <iostream>
using namespace std;
struct cartas {
char palo;
int carta;
};
cartas*arreglo[52];
int main(int argc, char *argv[])
{
int i;
for (i=0;i<52;i++){
arreglo[i]= new carta();
}
system("PAUSE");
return EXIT_SUCCESS;
}
Revise this Paste
Children: 25087