#include "stdafx.h"
#include "stdio.h"
void swap (int a, int b);
int main (void)
{
int a,b;
printf("enter 2 positive integers");
scanf("%d",&a,&b);
swap (a,b);
printf("d%d,a,b\n");
}
void swap (int a, int b)
{
int swap (a,b);
}
I have one error
(20) : error C2078: too many initializers