Carp/test/csquare.c

4 lines
41 B
C
Raw Normal View History

2020-06-28 20:53:43 +03:00
int csquare(int a) {
return a * a;
}