View Code of Problem 77

#include<stdio.h>
void space(int a,int b,int c,int d){
	printf("%d %d %d %d",a,b,c,d);
}
int main()
{int a,b,c,d;
scanf("%d %d %d %d",&a,&b,&c,&d);
space(a,b,c,d);
return 0 ;
}

Double click to view unformatted code.


Back to problem 77