알고리즘 4 - Function 2 - squaring an argument

jabae·2021년 10월 4일
0

알고리즘

목록 보기
4/97

Q.

Now you have to write a function that takes an argument and returns the square of it.

A)

#include <stdint.h>

int32_t square(int32_t n){
    return (n * n);
}
profile
it's me!:)

0개의 댓글