In the last video we created variables x and y and gave them values, and I told you what they would store. But what if you didn’t believe me and wanted to see for yourself? The easiest way to do this is to use the pritntf() function.
Now, we’ve used the printf() function to print a sentence in the terminal that said hello world, but now we are going to be learning how to print other things to the screen.
Let’s first start with printing a number. What if we pass in just the value 9001 in to printf?
printf(9001);
In order to run this to see what happens, we actually have to recompile our program. Every single time we make any change to our program we have to recompile.
You can see that when we run it we get a compiling error. Let’s go back to our code.
The reason we are getting a compiling error is because printf does not know how to work with numbers like this. In order to tell printf we want to print a number, we have to give the printf function what is known as a format string. A string is anything inside of quotes, usually consisting of characters, such as “Hello World!
“
printf(“%i”, 9001);
We can also add a newline character in here:
printf(“%i
“, 9001);
This works!
Now, we can actually do the same thing with variables. That’s because, if you remember me saying, an int variable can be used anywhere you are expecting an integer.
printf(“%i
“, x);
This works great! The only problem is the program is not very descriptive when it runs. All it does is print the value. What if we want to do a bit more? We can actually add some of our own text inside of our string too. The only part that gets interpreted is the %i
.
printf(“The value of x is: %i
“, x);
If you want to print both variables, of course you could use two printf functions, but you can also use multiple variables inside of one printf function:
printf(“The value of x is: %i
The value of y is: %i
“, x, y);
Each thing passed into the printf function is known as an argument. In this situation we have three arguments: our string, and two integers.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Support me! http://www.patreon.com/calebcurry
Subscribe to my newsletter: http://eepurl.com/-8qtH
Donate!: http://bit.ly/DonateCTVM2.
~~~~~~~~~~~~~~~Additional Links~~~~~~~~~~~~~~~
More content: http://CalebCurry.com
Facebook: http://www.facebook.com/CalebTheVideoMaker
Google+: https://plus.google.com/+CalebTheVideoMaker2
Twitter: http://twitter.com/calebCurry
Amazing Web Hosting – https://www.dreamhost.com/r.cgi?1487063 (The best web hosting for a cheap price!)
Amazon Auto Links: No products found.
set number
Short, simple, awesome!!!!!!!!
Are %d and %i are the same ?
Damn you’re right, some tutorials are just crap out there, someone just typing and not explaining a thing, thumbs up dude!
Thanks! Very helpful!
its over 9000!!!11
Like your style.
./a.out is not working…
Can’t you put 9001 in double quotes
for compiling just do gcc [name] & ./a.out