Skip to content

Instantly share code, notes, and snippets.

View RobertBendun's full-sized avatar

Robert Bendun RobertBendun

View GitHub Profile
@RobertBendun
RobertBendun / printf_example_progressbar.c
Created July 15, 2018 10:35 — forked from unveres/printf_example_progressbar.c
example showing really powerful capabilities of printf, here it is a progress bar
#include <stdio.h>
#include <string.h>
#include <unistd.h>
/* printf example: progress bar */
/* by unveres, 2018 */
/* more at gist.github.com/unveres */
/* look at that 25th line of code, it shows the true power of printf */
#define BARSIZE (50)