Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <iomanip> //Bliclioteca de espaçao setw()
- #include <winsock2.h>
- #include <stdlib.h>
- #include <fstream>
- #include <windows.h>
- #include <ctime>
- #include <string>
- #define max 100 // Define e como se fosse uma variável mas ela não armazena valores;
- using namespace std;
- void funcaoMatrix(const int[],const int ); // Argumentos de função com matriz não aceita ponteiros; ate onde testei;
- // E variavel ponteiro string nao aceita referencia instanciada como passando argumentos.
- int main(){
- const int x = 5;
- int num [x] = {};
- funcaoMatrix(num,x);
- system("pause");
- return 0;
- }
- void funcaoMatrix(const int a[], const int tm){
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement