Skip to content

wisvem/printf

Repository files navigation

Printf project

Printf from basics to expert

Beginning 🚀

_The function printf() writes output to , the standard output. The function writes under the control of a string that specifies how subsequent arguments (accessed via the variable-length argument facilities of stdarg) are converted for output.

Requirements 📋

Compiler and a IDE

sudo apt-get install gcc/clang
sudo apt-get install emacs

Installing 🔧

__

WE need a compiler in order to work with or c program

sudo apt-get install gcc/clang

wORKING ON PRINTF ⚙️

_To use the printf function, assuming the above dependencies have been installed, compile all .c files in the repository and include the header holberton.h with any main function.

Description 🔩

_The function printf writes output to standard output. The function writes under the control of a format string that specifies how subsequent arguments (accessed via the variable-length argument facilities of stdarg) are converted for output.

#include "holberton.h"

int main(void)
{
    _printf("Hello, World!");

    return (0);
}

Return ⌨️

_Upon successful return, printf returns the structure that we are working on

return (0);

Despliegue 📦

Agrega notas adicionales sobre como hacer deploy

Construido con 🛠️

Menciona las herramientas que utilizaste para crear tu proyecto

printf Project

Contributors

Nicolas Gonzalez Delgado - @cnicogd

Wiston Venera Macías - @wisvem

About

Printf project at Holberton School

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages