Skip to content

Commit

Permalink
Add c-logo.png to multiple directories
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWatcher01 committed Apr 2, 2024
1 parent a05af3d commit 28b042b
Show file tree
Hide file tree
Showing 24 changed files with 425 additions and 18 deletions.
Binary file added argc_argv/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bit_manipulation/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added doubly_linked_lists/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added file_io/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added function_pointers/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added functions_nested_loops/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hash_tables/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 18 additions & 17 deletions hello_world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<h1 align="left">C - Hello World</h1>

# Resources
## Resources

### Read or watch

Expand All @@ -27,11 +27,11 @@
- _`puts`_
- _`putchar`_

# Learning Objectives
## Learning Objectives

At the end of this project, you are expected to be able to explain to anyone, without the help of Google:

## General
### General

- Why C programming is awesome
- Who invented C
Expand All @@ -47,8 +47,9 @@ At the end of this project, you are expected to be able to explain to anyone, wi
- How to find the right header to include in your source code when using a standard library function
- How does the _`main`_ function influence the return value of the program

# Requirements
## Requirements

### C Scripts

- Allowed editors: _`vi`_, _`vim`_, _`emacs`_
- All your files will be compiled on Ubuntu 20.04 LTS using _`gcc`_, using the options _`-Wall -Werror -Wextra -pedantic -std=gnu89`_
Expand All @@ -59,17 +60,17 @@ At the end of this project, you are expected to be able to explain to anyone, wi
- You are not allowed to use _`system`_
- Your code should use the _`Betty`_ style. It will be checked using [_`betty-style.pl`_](https://github.com/holbertonschool/Betty/blob/master/betty-style.pl) and [_`betty-doc.pl`_](https://github.com/holbertonschool/Betty/blob/master/betty-doc.pl)

## Shell Scripts
### Shell Scripts

- Allowed editors: _`vi`_, _`vim`_, _`emacs`_
- All your scripts will be tested on Ubuntu 20.04 LTS
- All your scripts should be exactly two lines long (_`$ wc -l file`_ should print 2)
- All your files should end with a new line
- The first line of all your files should be exactly _`#!/bin/bash`_

# More Info
## More Info

## Betty linter
### Betty linter

To run the Betty linter just with command _`betty <filename>`_:

Expand Down Expand Up @@ -107,9 +108,9 @@ done

You can now type _`betty <filename>`_ to run the Betty linter!

# Tasks
## Tasks

## [0-Preprocessor](./0-preprocessor)
### [0-Preprocessor](./0-preprocessor)

Write a script that runs a C file through the preprocessor and save the result into another file.

Expand Down Expand Up @@ -151,7 +152,7 @@ Repo:
- Directory: `hello_world`
- File: [0-preprocessor](./0-preprocessor)

## [1. Compiler](./1-compiler)
### [1. Compiler](./1-compiler)

Write a script that compiles a C file but does not link.

Expand Down Expand Up @@ -188,7 +189,7 @@ Repo:
- Directory: `hello_world`
- File: [1-compiler](./1-compiler)

## [2. Assembler](./2-assembler)
### [2. Assembler](./2-assembler)

Write a script that generates the assembly code of a C code and save it in an output file.

Expand Down Expand Up @@ -244,7 +245,7 @@ Repo:
- Directory: `hello_world`
- File: [2-assembler](./2-assembler)

## [3. Name](./3-name)
### [3. Name](./3-name)

Write a script that compiles a C file and creates an executable named `cisfun`.

Expand Down Expand Up @@ -277,7 +278,7 @@ Repo:
- Directory: `hello_world`
- File: [3. Name](./3-name)

## [4. Hello, puts](./4-puts.c)
### [4. Hello, puts](./4-puts.c)

Write a C program that prints exactly `"Programming is like building a multilingual puzzle`, followed by a new line.

Expand All @@ -299,7 +300,7 @@ Repo:
- Directory: `hello_world`
- File: [4-puts.c](./4-puts.c)

## [5. Hello, printf](./5-printf.c)
### [5. Hello, printf](./5-printf.c)

Write a C program that prints exactly `with proper grammar, but the outcome is a piece of art,`, followed by a new line.

Expand All @@ -323,7 +324,7 @@ Repo:
- Directory: `hello_world`
- File: [5-printf.c](./5-printf.c)

## [6. Size is not grandeur, and territory does not make a nation](./6-size.c)
### [6. Size is not grandeur, and territory does not make a nation](./6-size.c)

Write a C program that prints the size of various types on the computer it is compiled and run on.

Expand Down Expand Up @@ -358,7 +359,7 @@ Repo:
- Directory: `hello_world`
- File: [6-size.c](./6-size.c)

## [8. Intel](./100-intel)
### [8. Intel](./100-intel)

Write a script that generates the assembly code (Intel syntax) of a C code and save it in an output file.

Expand Down Expand Up @@ -413,7 +414,7 @@ Repo:
- Directory: `hello_world`
- File: [100-intel](./100-intel)

## [9. UNIX is basically a simple operating system, but you have to be a genius to understand the simplicity](./101-quote.c)
### [9. UNIX is basically a simple operating system, but you have to be a genius to understand the simplicity](./101-quote.c)

Write a C program that prints exactly `and that piece of art is useful" - Dora Korpar, 2015-10-19`, followed by a new line, to the standard error.

Expand Down
Binary file added images/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added makefiles/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added malloc_free/images copy/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added malloc_free/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added more_functions_nested_loops/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added more_malloc_free/images copy/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added more_malloc_free/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pointers_arrays_strings/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added preprocessor/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added recursion/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added search_algorithms/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added singly_linked_lists/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static_libraries/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added structures_typedef/images/c-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 28b042b

Please sign in to comment.