Skip to content

Latest commit

 

History

History

0x03-functions

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Functions in C

  • Projects done during my study of Harvard University's cs50, an introduction to the intellectual enterprises of computer science and the art of programming.

Technologies

  • Files written in Visual Studio Code 1.73 editor.
  • C files compiled using gcc 9.4.0.
  • C files wriiten according to the betty coding style.
  • Files tested on Windows 10 using gcc.

Files

File Description
0-meow.c A C function called meow that prints "meow" 3 times.
1-meow.c A C function called meow that prints "meow" n times.
2-sale_price.c A C program that promts the user to enter the regular sales price, and calculates the actual sales price after the discount.
3-sale_price.c A C program that promts the user to enter the regular sales price + percentage discount, and calculates the actual sales price after the discount.
4-buggy.c A C programChecks whether an integer is a negative value.
5-length.c A C program that outputs the length of a string entered by the user.
6-draw.c A C program that draws a brick of n "#"s.
7-draw.c A C program that draws a brick of n "#"s.