#include <stdio.h>
#define SIZE 3
void swaparrays(int* a, int* b);
main ()
{
int a[3][3]={{0, 2, 3},
{1, 5, 7},
{3, 9, 4}};
int b[3][3]={{2, 8, 5},
{4, 7, 1},
{3, 9, 2}};
}
void swaparrays(int* , int* );
{
//How I can impement swap arrays Function???//
}
Boudou -10 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.