Skip to content

Instantly share code, notes, and snippets.

@s3f
Created December 29, 2016 22:41
Show Gist options
  • Save s3f/f52bad90c326c6b8af1057d8927d2861 to your computer and use it in GitHub Desktop.
Save s3f/f52bad90c326c6b8af1057d8927d2861 to your computer and use it in GitHub Desktop.
Chapter 2 - Strngs && Chars created by s3f - https://repl.it/E58i/0
#include <stdio.h>
main ()
{
printf("I am learning the %c programming language\n", 'C');
printf("I have just completed Chapter %d\n", 2);
printf("I am %.1f percent ready to move on", 99.9);
printf("to the next chapter!\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment