So, learning C as in C not c# c++ or any other wanky thingy, just plain c
- Build and Run a project:
make p=<project_name>
e.g.make p=hello-world
- Build:
make p=<project_name> build
- Clean up a project dir (removes compiled files):
make p=<project_name> clean
- https://gist.github.com/kvendrik/118a1460ef4d46ae6f72
- https://www.youtube.com/results?search_query=cs50+problem+sets&page=&utm_source=opensearch
Write a program that outputs Hello World
20 times
Write a program that stores your age, length and name in variables and prints them.
Create a program that prints a piramid that looks like this:
#
##
###
####
#####
######
#######
########
#########
##########
###########
############
#############
##############
###############
################
#################
##################
###################
####################
Write a program that will prompt the user to input ten integer values. The program will display the smallest and greatest of those values. It also displays the value that occur the most. - Source
By using two-dimensional array, write C program to display a matrix as shown below: - Source
0 1 1 1 1
-1 0 1 1 1
-1 -1 0 1 1
-1 -1 -1 0 1
-1 -1 -1 -1 0