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> // Responsavel por malloc,calloc,realloc e free
- #include <fstream>
- #include <windows.h>
- #include <ctime>
- #include <string>
- #define max 100
- using namespace std;
- void funcaoMatriz(const char[],const int* b );//
- int main(){
- int x = 5;
- char num [x] = {};
- cin.getline(num,x);
- funcaoMatriz(num,&x);// Nao aceita em argumentos de funcao arrys de caracteres ponteiros exemplo (num,&x) num adicionando referencia dara erro.;
- system("pause");
- return 0;
- }
- void funcaoMatriz(const char a[], const int* b){
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement