Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 366 Bytes

001_22_09_ft_square.MD

File metadata and controls

12 lines (8 loc) · 366 Bytes
Turn-in directory: 1_22_09_ft_square
Files to turn-in: ft_square.c
Allowed functions: printf
  • Write a function that will take an integer as an argument

  • The function must compute and print the square of this number, followed by a newline character

  • The function must be prototyped as follows:

    void ft_square(int n);