Thứ Ba, 25 tháng 12, 2018

Waching daily Dec 25 2018

For more infomation >> Newborn baby Barbi's Tired and hungry Pity baby Weak/Younger Mum Blacky learn to nursing baby - Duration: 10:17.

-------------------------------------------

Happy Christmas to You Part 2 - Duration: 3:28.

Rudolph the Red-Nosed Reindeer

Had a very shiny nose

And if you ever saw it

You would even say it glows

All of the other reindeer

Used to laugh and call him names

They never let poor Rudolph

Join in any reindeer games

What a bright time, it's the right time

To rock the night away

Jingle bell time is a swell time

To go gliding in a one-horse sleigh

Jingle bell, jingle bell, jingle bell rock

Jingle bells chime in jingle bell time

Snowing and blowing up bushels of fun

Now the jingle hop has begun

Giddy-up jingle horse, pick up your feet

Jingle around the clock

Mix and a-mingle in the jingling beat

That's the jingle bell

That's the JINGLE BELL

THAT'S THE JINGLE BELL ROCK!

You better watch out

You better not cry

You better not pout

I'm telling you why

Santa Claus is comin' to town

He's making a list

He's checking it twice

He's gonna find out

Who's naughty or nice

Santa Claus is comin' to town

Santa Claus is comin'

TO TOWN!!!

He sees you when you're sleeping

He knows when you're awake (That's creepy!)

He knows if you've been bad or good

So be good for goodness sake

Rudolph the Red-Nosed Reindeer

Had a very shiny nose

And if you ever saw it

You would even say it glows

Rudolph the Red-Nosed Reindeer

Had a very shiny nose

And if you ever saw it

You would even say it glows

You. would. even. say.

IT

GLOWS!

My dog is flea-ed!

The FLEAS on me DOG!

He's itchin', scratchin

Where are these fleas

even coming from?

I guess he's gonna be itchin' this Christmas

Oh Slip! :P

For more infomation >> Happy Christmas to You Part 2 - Duration: 3:28.

-------------------------------------------

Cabbage rolls vegan recipe | #vegansurvive - Duration: 2:34.

For more infomation >> Cabbage rolls vegan recipe | #vegansurvive - Duration: 2:34.

-------------------------------------------

Cute Baby Talking On The Phone - Cute Baby Video - Duration: 3:32.

Hello everyone!!! Thanks for watching!!!

For more infomation >> Cute Baby Talking On The Phone - Cute Baby Video - Duration: 3:32.

-------------------------------------------

Happy Christmas to You - Duration: 1:39.

Happy birthday to you ...

... happy Birthday to you ...

... happy BIRTHDAY to-oo You-ooo ...

~ happy birthday to you ~

Dashing through the snow!

(through the snow!)

In a one-horse open sleigh!

(open-sleigh!)

Everywhere we go,

(where we go!)

Laughing all ... the way ... ~

Bells on bob-tail ring ... !

(BOB-TAIL RING!)

Making spirits bright ... !

(SPIRITS BRIGHT!)

O' what FUN IS IT to RIDE ... !

... in a ONE-HORSE OPEN sleigh ~ ...

Jingle bells ... jingle bells ...

Jingle all ... the way ...

(all the way)

O' what fun, is it to ride,

~ in a one-horse open sleigh ~

Jingle bells ... jingle bells ...

~ Jingle all ... the way ... ~

(all the way)

O' what FUN,

is it to RIDE

in a ONE

HORSE

O-PEN

SLEIGH ~~ !

For more infomation >> Happy Christmas to You - Duration: 1:39.

-------------------------------------------

Cute and Funny Beagle Dog Video Compilation #1 - Adorable Dogs - Duration: 10:21.

Hi Guy, Have a nice day. Please SUBSCRIBE, LIKE and SHARE our video.

For more infomation >> Cute and Funny Beagle Dog Video Compilation #1 - Adorable Dogs - Duration: 10:21.

-------------------------------------------

can you Guess the OUTPUT of this C Program? - Duration: 4:29.

Hi this Is Anil from LearningLad and welcome to the guess the output video series on C

programming language.

In this video I have a C program in the screen.

All you have to do is pause this video and take a look at the source code and then first

you need to find whether this program contains an errors.

if you think this program is error free then you need to guess the output of the program.

once you have an answer for this program, you can play the video.

I am going to run the program and explain whatever the output will come.

Now you guys can pause this video.

AlI right.

now I think you guys have an answer for this program, I am going to build and run this.

so I'm going to do build and run and the output that we get for this program is "welcome

to Learning Lad"

so now why we get the output like this?

Here if you look at the source code first we have defined a macro called youtube and

the definition of this macro youtube is main and then we have a printf statement inside

this function which will display "welcome to LearningLad"

so here all of you know that in a C program we should have one main function.

now if you look at source code here then we don't have a main function but still our program

runs.

so why this program runs?

now before the actual compilation process there is a step called as the "Pre Processing"

and during the pre processing the preprocessor program will search for the macros used in

the program and it will replace those macros with that macros definition.

So here the preprocessor will search for youtube in this code and then it will replace that

with main.

so the output of the preprocessor will contain this main function because it will replace

this youtube with main and then that output of the preprocessor is passed on to the compiler

for the compilation process and during that time this code has a main function and we

haven't made any mistake in the code and that's why you know we get the output "Welcome

to LearningLad"

now if you want to check the output of the preprocessor then you can do that.

For that first you have to open the folder where you have saved this program.

To demonstrate that I am going to open the folder where I have stored this a program

and here as you guys can see I have stored this program inside the what is the output

folder which is inside C programming folder which is inside the source codes folder which

is in the D drive.

so to check the output of the preprocessor I need to open up the command prompt in this

location.

so I can open the command prompt by going to the URL bar and just by typing the CMD

here and if I hit the enter button you guys can see we have the command prompt which is

inside this folder.

so now here what I can do as I can write a command.

The command is GCC and then we use -E to only preprocessor code you know it will not compile

the code, it will just do the preprocessing.

Then we need to leave a space and then we need to write the file name where we have

the source code.

This source code is inside this main.c file.

So i'm gonna specify that here.

Main.c

and if I hit the enter button it will you know display a lot of things.

these are the things the preprocessor has done.

first it has included the STDIO.h header files contents to our file and then in the end you

guys can see our main function.

Here we don't have youtube. we have main function or you know youtube

has been replaced with the main.

so this is the work of the preprocessor and when this code is compiled, we have a main

function and all other things are proper and that's why this program runs and we get

the output as "welcome to LearningLad"

So this is it guys for this video.

Thank you for watching.

If you feel like this video hit the like button.

if don't like it it then hit the dislike button and if you want to say something then write

that in the comment box and if you think this video will help any of your friends then do

share this video with them.

thank you for watching I'll see you later in the next video.

For more infomation >> can you Guess the OUTPUT of this C Program? - Duration: 4:29.

-------------------------------------------

Funny Husky Dogs Playing and Babysitting Baby - Cute Baby Videos - Duration: 3:31.

Hello everyone! Thanks for watching. Don't forget to subscribe, like and share our video.

For more infomation >> Funny Husky Dogs Playing and Babysitting Baby - Cute Baby Videos - Duration: 3:31.

-------------------------------------------

And I'll see you...SOON ENOUGH! - Duration: 0:56.

On that note, I'll see you... SOON ENOUGH!

Like, subscribe

Happy Halloween!

Không có nhận xét nào:

Đăng nhận xét