real thanks......initially it was taking me so long as I was first counting zeroes and then reversing the whole number....this way is so much better.....
Sir, please make a video on decimal to octal conversion,, no doubt sir u are best your way of teaching is fantastic ,, thank you soo much sir for giving videos in hindi so we are able to understand easily ,, thanks a lot sir
Hi sir, your video has helped me a great deal.Thanks for that. But I have a question, after running my codes and keying in the decimal values, there is no result coz after pressing "enter" the cursor moves to the next line instead of giving me the output. Which key should I press then?
This video is amazing, you had explained everything very well. As am myself a Web Develper and I make youtube videos. I can say that you done a great job.
hello sir. I m from Saudi Arabia.Your videos have been very helpful.It is my humble request to explain programmes on substrings and deleting duplicates.It is very urgent as our exams are approaching .
Ek doubt hai aapne kaha ke binary values check from top to bottom but when iam checking it from top to bottom the answer is coming as 11 but we want 13
Write a C program that accepts a positive decimal floating point number A and a positive integer k, and converts A to the corresponding binary representation B having k many digits after the floating point. Compute the decimal value of B, call it C, and hence compute the absolute error E in binary representation B as the difference between C and A. Finally, it should prints the following: a) Inputs: decimal number ( A ) and number of digits after floating point ( k ) b) Binary representation (B) of A c) The absolute error in binary representation E=| C - A | d) The relative absolute error R = E/A You cannot use array. Example: i) For Input: A= 2.47, k = 5, B= 10.01111 Then compute C = (2+0)+ (0+1/4+1/8+1/16+1/32) (as floating point number) to determine the error E. For input: A = 2.470000, and k=16 Output (B): 0000 0000 0000 0000 0000 0000 0000 0010 . 0111 1000 0101 0001 C =2.469986, E=0.000014 R=0.000006 ii) For Input: A = 6.986, k = 8 => B=110.11111100 Then C = (4+2)+ ( 0+1/2+1/4+1/8+1/16.0+1/32+1/64+0+0), and use it to compute the absolute error. For input: A = 6.986000, k=16 Output (B): 0000 0000 0000 0000 0000 0000 0000 0110 . 1111 1100 0110 1010 C=6.985992, E=0.000008, R=0.000001
you are so best teacher of c programming
Explained thoroughly. Best video ever made in c. Thanks lot sir. For this method anyone can understand easily.. Kudos 👏👏👏👏
real thanks......initially it was taking me so long as I was first counting zeroes and then reversing the whole number....this way is so much better.....
One of the best video on RUclips.
By this video student clear their douts very easily. thank u very much once again.
Waah Sir style change kr diya padaanae ka. Style is not bad .
Pehle Se Accha h
Thanks sir...
Kisika bhi nahi samjha lekin aapka samjha
Thank u sooo much 💓
you teach very well sir
Asm sir....I haven't seen such type of experienced teacher yet.....👌👌👌👌..
# I wanna thank u from my bottom of heart...
💝💝💝💝💝
very nice it's so helpful sir apne bahot achha explain kiya thank u so much
Thnq so much sir 4 ur vdos. I cleared my O level exam of C language bcz of u...
Sir, please make a video on decimal to octal conversion,, no doubt sir u are best your way of teaching is fantastic ,, thank you soo much sir for giving videos in hindi so we are able to understand easily ,, thanks a lot sir
u r just awesome sir . bs o level ke sare program krwa dejea..
so very very very a lot thanks for easy and slowly teach and also thanks for amazing example
i m from Nepal and love your videos sir ,could you make video in sine series/cosine series in c.
Nice way to explained, thank you sir for making such videos...
u teach really awesome sir
very well explained bro!
i loved it sir ! you taught the complicated topic in the most simple way i have ever seen. THANKL YOU !
sir, this video is very helpful for me.thank u very much.
Excellent explanation Sir!
Hats up to you.
Very nice vedio 😁😁
Thnku So much for a detail explanation.
Hi sir, your video has helped me a great deal.Thanks for that. But I have a question, after running my codes and keying in the decimal values, there is no result coz after pressing "enter" the cursor moves to the next line instead of giving me the output. Which key should I press then?
you are great sir ☺☺☺
Thanks for for this video it is very helpful for me
MASHAALLAH
Nice way if teaching👌👌👌👌
Superb explanation
sir you are genius man thanks for this video
Good teaching
sir your videos are so helpful and could you please tell me what are the applications of binary number.
excellent sir
Thank you sir, you made it easy
nice video sir
Thank u sir aapka vdo dekh dekh kor AMIE ki teyari kor rha hu
Best of LUCK brother.
Thank you! For sharing
👍❤️
way of teaching is excellent sir
Thank u so much sir
grrreeeat video sir.........awsome logic👍.....cool graphics. This video helped me a lot.....thanks sir.
If we input 256 than the output using this code will be 1
Rather than 100000000
The code will not work if 0's occur on right hand side
Excellent video sir ji...........a great thanks to you sir. kindly give code detail in description......thanks anyway.
Thanks for the video
Sir I am big fan of u
Awesome! please make more videos on data structures and algorithms.
please make video flow chart and algorithm
thanks a lot sir for this video
Thankss sir
awesome !! but why we print var , we can print only binary to get out put. please reply.. I'm confused here
sir please make video on stack and queue in c++
Thank you Sir
I am very impressed by your video looking sir
Nice sir
SIR NICE WORK, SIR DATA STRUCTURE KAY LECTURE PLZ JALDI UPLOAD KAR DAIN. GOD BLESS YOU.
Thankyou sir u defined very good
Sir binary to decimal pe ek video banav
Thanks sir u explained it very well..
thanks sir. you explain very well
Thanks sir .very nice.
Sir plz make a video of binary to octal
very useful and awsm editing
Very helpful video ! Thank you sir !
I GOT IT ..THANK U SIR
This video is amazing, you had explained everything very well. As am myself a Web Develper and I make youtube videos. I can say that you done a great job.
thnx u sir for ur videos.. u should make a video about a simple game..
Maza a gya
Great sir
Love from Pakistan
hats off to your new concept man ...so good
hello sir. I m from Saudi Arabia.Your videos have been very helpful.It is my humble request to explain programmes on substrings and deleting duplicates.It is very urgent as our exams are approaching .
Best teacher always
🙏🙏🙏
Ek doubt hai aapne kaha ke binary values check from top to bottom but when iam checking it from top to bottom the answer is coming as 11 but we want 13
Outstanding sir
Write a C program that accepts a positive decimal floating point number A and a positive integer k, and converts A to the corresponding binary representation B having k many digits after the floating point. Compute the decimal value of B, call it C, and hence compute the absolute error E in binary representation B as the difference between C and A. Finally, it should prints the following:
a) Inputs: decimal number ( A ) and number of digits after floating point ( k )
b) Binary representation (B) of A
c) The absolute error in binary representation E=| C - A |
d) The relative absolute error R = E/A
You cannot use array.
Example: i) For Input: A= 2.47, k = 5, B= 10.01111
Then compute C = (2+0)+ (0+1/4+1/8+1/16+1/32) (as floating point number) to determine the error E.
For input: A = 2.470000, and k=16
Output (B): 0000 0000 0000 0000 0000 0000 0000 0010 . 0111 1000 0101 0001
C =2.469986, E=0.000014 R=0.000006
ii) For Input: A = 6.986, k = 8 => B=110.11111100
Then C = (4+2)+ ( 0+1/2+1/4+1/8+1/16.0+1/32+1/64+0+0), and use it to compute the absolute error.
For input: A = 6.986000, k=16
Output (B): 0000 0000 0000 0000 0000 0000 0000 0110 . 1111 1100 0110 1010
C=6.985992, E=0.000008, R=0.000001
solve this please
Sir Can you please put question on each videos so that i can solve slowly from the first videos which can help others tooo
Thanks Sir
Great sir
nice video brother
Excellent tutorial .... thank u very much sir....
You're welcome :)
SIR, when we are doing binary of 32 then the output is coming in negative value like -31072
I guss it's binary value will be more than 8 bits so such error occurred.
But I am not sure
Thanks
string capitalisation sir?
Great
Wow amazing
u r the best sir
sir can you plz solve some previous year's paper and upload them ........
sir please one video on conversion of octal to binary
sir please make a program using function (addition of two no.)
Very sharp explanation easily understand in single view awesome ... Great
Sir please do binary to decimal also
Sir also make program to overt binary into decimal
Thanks a lot!!!
Decimal to octal ka bhi video banao
thank you sir but how i will see your more vedio please tell me i like your lecture
C Programming Tutorials:
bit.ly/1CfKvqG
Sir, what if you convert decimal number 10 to binary number...will it come out ok
can you program c that can convert letters to decimal to binary then back to decimal to lettler in asingle entry........
Please do this in array
thanks a lot very helpful and great!
Thsnku
Want to lecture on first convert two
decimal to binary and sum of it to numbers
Int a=4, b=2;
b+=++b2;
Printed("
a=%d, b=%d", a,b);
Sir iska answer kaise nikale please help me
sir python language ka bhi tutorial bnaye plz
Thanks for the tutorial. How can we rewrite the program so that we start with the least significant bit?
sir please upload the concept of static block and types of variable in java.