C Programming Tutorial 10 - C Basics Part 2 - Print Variables Using Printf

submitted by mkenny400 on 03/19/18 1

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!\n" printf("%i", 9001); We can also add a newline character in here: printf("%i\n", 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\n", 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\n. printf("The value of x is: %i\n", 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\nThe value of y is: %i\n", 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! www.patreon.com/calebcurry Subscribe to my newsletter: eepurl.com/-8qtH Donate!: bit.ly/DonateCTVM2. ~~~~~~~~~~~~~~~Additional Links~~~~~~~~~~~~~~~ More content: CalebCurry.com Facebook: www.facebook.com/CalebTheVideoMaker Google+: plus.google.com/+CalebTheVideoMaker2 Twitter: twitter.com/calebCurry Amazing Web Hosting - www.dreamhost.com/r.cgi?1487063 (The best web hosting for a cheap price!)

Leave a comment

Be the first to comment

Collections with this video
Email
Message
×
Embed video on a website or blog
Width
px
Height
px
×
Join Huzzaz
Start collecting all your favorite videos
×
Log in
Join Huzzaz

facebook login
×
Retrieve username and password
Name
Enter your email address to retrieve your username and password
(Check your spam folder if you don't find it in your inbox)

×