Fundamental Data Types − Float, Double & Long Double

preview_player
Показать описание
Programming & Data Structures: Float, double and long double data types in C programming.
Topics discussed:
1. Float data type.
2. Double data type.
3. Long double data type.
4. Difference between float and double.
5. Difference between double and long double.
6. Fixed point representation.
7. Floating point representation.
8. Difference between fixed and floating points.
9. Float data type example.
10. Double data type example.
11. Long double data type example.

Music:
Axol x Alex Skrindo - You [NCS Release]

#CProgrammingByNeso #CProgramming #DataTypes #Float #Double #LongDouble
Рекомендации по теме
Комментарии
Автор

Never, ever found anything better than this immense course! Masterpiece!

stefaniasmanio
Автор

Best video ever on C language... Absolutely easy explanation

MohdUmar-domu
Автор

this was the exact playlist i wanted for clearing my doubts

mainakdutta
Автор

Understood every damn piece of it thanks.

ashwingiri
Автор

couldn't have understood the difference so well anywhere else ..thanks...u r simply awesome

apurvalohreh
Автор

This is a genius. Give him a medal
He is teaching in such a way that Dennis Ritchie will also appreciate him (if He would be alive)!

DridhaNishchay
Автор

Although I'm learning programming for a quite some time now I'm learing new things here. Ty <3

maxk
Автор

just loving the contents and explainations

mayanksoni
Автор

Very nicely explain each and every concept thank you so much

sonalikhandare
Автор

i'm glad that I am not wasting my money on meanigless paid courses and I am learning deep concepts here.
Thank u so much !!! God bless uhh!!

manaspatil
Автор

Sir your videos made me clear from confusion... thanks alot

indian
Автор

in short terms you are the best giving more insight to what I thought i understood.In fact you are the best, meaning the one teaching

FosahMumaCaleb
Автор

damn, if you want to learn in-depth, this is the channel for you. thank you for free quality content/education.

imavector
Автор

In general; it is best to avoid float and double as long as possible. And use integers instead. A computer is very bad in float/double precision calculation.

ArjanvanVught
Автор

NPTEL lectures can't even compete with Neso's lectures. I have watched both of them.

DridhaNishchay
Автор

my %Lf (long double) returns 0.0000. what is wrong with it. it doesn't print the actual number assigned to variable.

munsef
Автор

Very well explained
Sir in your previous lecture u told that we can find our min and maximum values of data type
But when I tried that
It was only being applicable to integer
But I need to find the min and max values of other data types
Please tell it's code


Yours daily visitor

ghousemohiuddin
Автор

@12:30 no need to make the divider a float type

ArjanvanVught
Автор

Thank you very much. You are a genius. 👍👍🔝🔝

vakhariyajay
Автор

Actually, there is something more that can be done, you can ask the compiler to convert the numbers from int to float by adding a (float) in it at the front. Like,

float var1 = (float) 9 / 7;

will work.

I am assuming the instructor will discuss about this in the future too though judging by how well he wants and is capable to explain alot of minor details that alot of others miss or simply dont care. I hope you will continue providing us even better content...

And btw, somewhere I saw like

printf("%5.7f", variable);

The meaning of .7 is explained in the lecture but what does that 5 represent? I thought that it will print 5 digits before decimal point and 7 digits after the decimal point though I didnt see 5 digits before decimal point, just 7 digits after the decimal point. Can anyone explain me that?

utsavpoudyal