Dude, i was working for over three hours, and you're the only one who got the solution ! I love you ! And i give you my like, take it ! :)
@LearningLad3 жыл бұрын
You are welcome
@paramgor76883 жыл бұрын
SAME
@sarba855283 жыл бұрын
Dude same here!
@peteradams21054 жыл бұрын
Beginner tip: Beware of testing your code in rapid succession with the use of 'srand(time(NULL))'. I thought I was having a problem during testing where the numbers were not "truly random" when in reality my problem was that I was running the program over and over so fast that it would often be run multiple times in the same second, so the second value of time would not change, and therefore the random number generated would be the same. That being said, thank you @LearningLad. This is by far one of the simplest and most easily understood methods to generate a random number that I have seen, AND you even included an easy way to add upper and lower limits. Very much appreciated.
@LearningLad4 жыл бұрын
Thank you :)
@aretib10264 жыл бұрын
By far the most helpful video on this specific topic. thank you so much! keep up the great work.
@LearningLad4 жыл бұрын
Glad it was helpful!
@joelmarkjmj2 жыл бұрын
Hats off for your explanation sir & You're the only one who says to dislike the video if we don't like it But I've became a huge fan of your explanation sir. that's really crystal clear sir...thank you for debugging my code sir
@LearningLad2 жыл бұрын
Thanks a ton
@sayukiTechki2 жыл бұрын
wow, your explanation is fantastic, you just made my learning C programming more enjoyable.
@LearningLad2 жыл бұрын
thank you :)
@chill4r5858 күн бұрын
Your explanations are always crystak clear, thank you, I will start learning C from your channel!! Subbed!
@LearningLad8 күн бұрын
Most welcome
@deeptangshu-dutta3 жыл бұрын
Thank You. I was literally stuck on this rand() function for days. And cussing it too😅😓. And now I know it. Thanks Once again😄♥♥
@brxyann3 жыл бұрын
Thank you! Very helpful tutorial for a beginner like me 👍
@LearningLad3 жыл бұрын
Glad it was helpful!
@user-mi8ew2to8e4 жыл бұрын
Interviewer : Code the internal implementation of rand()
@MesbahSalekeen3 жыл бұрын
i was trying to make a hangman game where i will give some words in a text file associated with some random number. my program will randomly take a word and ask user to guess. this definitely helped.
@balkrishnakc9967 Жыл бұрын
I really appreciate for your teaching that you provide all the bug and solutions ❤
@LearningLad Жыл бұрын
It's my pleasure
@charanmc44843 жыл бұрын
Superb explanation bro,good job. Thanks 🤗
@LearningLad3 жыл бұрын
Welcome 👍
@argentinidomador72392 жыл бұрын
Thanks for your video, this help me a lot :D
@LearningLad2 жыл бұрын
You're welcome!
@williamhong68193 жыл бұрын
Thank you so much, this really helped me with my assingment!!!!!!! Love you my man😘
@LearningLad3 жыл бұрын
Pleasure
@Linebeck4 жыл бұрын
Thank you so much!! Greetings from Italy :)
@LearningLad4 жыл бұрын
Pleasure :)
@thediychannel28054 жыл бұрын
It was a very nice and helpful video👍 Thank you
@LearningLad4 жыл бұрын
Glad it was helpful!
@joelmarkjmj2 жыл бұрын
Thank you for debugging my code sir
@LearningLad2 жыл бұрын
most welcome :)
@Vutsman13 жыл бұрын
What if you need a random number from 1 to 1 million, with a seed 179. The first iteration is 545994 but I can't get it. I'd like to know how to do this.
@_StardustSurfer4 жыл бұрын
Very helpful. Thank you so much!! 🙏
@LearningLad4 жыл бұрын
You're so welcome!
@VishalSharma-jx9in3 жыл бұрын
thanks bro that video was amazing
@LearningLad3 жыл бұрын
Pleasure
@nikkowh3 жыл бұрын
Yo man, thanks for vid, i think i passed just thanks to you
@LearningLad3 жыл бұрын
Glad my video helped you Keep learning
@danielceka52472 жыл бұрын
Thank you man you saved me
@LearningLad2 жыл бұрын
Glad I could help
@prakharmathur64474 жыл бұрын
Thanks sir , I was in need of this
@LearningLad4 жыл бұрын
Most welcome
@MeetPatel-ps1hh3 жыл бұрын
Your are Awesome Dude!!!! liked and subscribed instantly!
@Naomi-ej2gr3 жыл бұрын
This is of great help, thank u for making these videos
@LearningLad3 жыл бұрын
My pleasure!
@studyWithJun4732 жыл бұрын
thanks bro. easy to understand . no bullshit , straight away got to the point. love it
@abubakarmusaharuna97764 жыл бұрын
wow! well explanation thank you sir
@LearningLad4 жыл бұрын
You are most welcome
@martincolicchio27733 жыл бұрын
LIFE SAVER, THANK YOU
@LearningLad3 жыл бұрын
Pleasure :)
@himankjeshwar86362 жыл бұрын
SUMARRY : Formula for 0 to n : rand()%n Formula for m to n : rand()%(n-m+1)+m where m is the lower limit and n is the upper limit.
@LearningLad2 жыл бұрын
yes
@Codeshub20244 жыл бұрын
Thank you so much sir 😊😊
@LearningLad4 жыл бұрын
Most welcome
@Ishpard3 жыл бұрын
If i want to create 100 random values at the same time, they end up being the same. Am i missing something? What can i do to get around this?
@hexothermus71042 жыл бұрын
Thanks for your help bro
@LearningLad2 жыл бұрын
My Pleasure :)
@matthewkribs47793 жыл бұрын
Thanks for the help, much appreciated!
@LearningLad3 жыл бұрын
Glad it helped!
@october35183 жыл бұрын
Informative and clear !!
@LearningLad3 жыл бұрын
Thank you :)
@theglitch94952 жыл бұрын
How can i make the program choose randomly from what the user puts in ?
@LearningLad2 жыл бұрын
Store user input in an array Generate random numbers between 0 and array length Get the number using array index generated randomly
@kartheekdasari93493 жыл бұрын
Tq man you have solved my doubt
@LearningLad3 жыл бұрын
pleasure :)
@souravpandey19823 жыл бұрын
Good job brother ❤️
@LearningLad3 жыл бұрын
Thank you
@ruchikhedekar53663 жыл бұрын
Sir what if the out is expected in float values..?
@sourantics20022 жыл бұрын
instead of marking your variable as an int mark it as a float or a double instead
@Jaime-II3 жыл бұрын
would it be hard to make it not repeat the same number?
@lostair38923 жыл бұрын
very well explained
@LearningLad3 жыл бұрын
Glad you think so!
@Saikoushik-k4l4 ай бұрын
as we are using only rand() stdlib.h is enough?
@mathematicsmadeeasier5190 Жыл бұрын
It shows the number of seconds elapsed. Then it is not really random number, it is an increasing sequence of numbers. What if we want to get 500, then 4 then 2100 and so on?
@filipostela18613 жыл бұрын
God bless, brother!
@LearningLad3 жыл бұрын
Thank you :)
@aalim12823 жыл бұрын
Thank you brother
@LearningLad3 жыл бұрын
Welcome
@Simouna3 жыл бұрын
I would like to ask if the random number is let's say 400, wouldn't the resulting no. equal to 4? or are we to assume that it would always be bigger than that?
@helloworld16372 жыл бұрын
Nice man..
@LearningLad2 жыл бұрын
Thanks ✌
@lokeshkrishnap31973 жыл бұрын
Thak u Brther🖤
@LearningLad3 жыл бұрын
Pleasure :)
@CSBAjay4 жыл бұрын
it is super useful tutorial
@LearningLad4 жыл бұрын
Glad it was helpful!
@die-hardotaku25703 жыл бұрын
"It can only generate 1 random number at once ".... If you print that "number" variable more than once , it shows the same numbers... so this program can only generate only one random number at once.... But previous video where you taught about 1970, Jan 01 time elapsed technique, we could generate more than one random number by printing again and again...this doesn't work, why???
@LearningLad3 жыл бұрын
to get different random numbers, you need to change the seed value ( every time before generating random number )
@sarba855283 жыл бұрын
Thank you so much!! Please don't thank me for watching :)
@LearningLad3 жыл бұрын
Pleasure
@pardeepkhli25323 жыл бұрын
please explain the logic clearly, by the way good video.
@TN7.2 жыл бұрын
great video !!!!!
@LearningLad2 жыл бұрын
thank you :)
@ostapfedchuk46522 жыл бұрын
bro thanks you very much
@monika21452 жыл бұрын
Sooo much thank you:)
@LearningLad2 жыл бұрын
You're welcome!
@craziestcat57674 жыл бұрын
Is there a way to make a random number output from 0-10 without repeating any numbers?
@mateuszlukaszczyk53594 жыл бұрын
sure, make an array, for loop, if arr[i] = arr[j] (where J is i+1) continue. Else-> store it
@jewelrana3014 жыл бұрын
thanks a lot sir
@LearningLad4 жыл бұрын
Pleasure :)
@pozeraczstivow63483 жыл бұрын
Thanks man!!!!!!!!!
@LearningLad3 жыл бұрын
Happy to help
@reeteshtripathi2 жыл бұрын
Amazing.
@LearningLad2 жыл бұрын
Thanks!
@syedashrafahamed60033 жыл бұрын
Bro which software you are using
@LearningLad3 жыл бұрын
Visual studio code
@siradjmounirlamri96632 жыл бұрын
Thank you
@LearningLad2 жыл бұрын
most welcome :)
@junwang84193 жыл бұрын
how do we make low and upper is double number like 0.50 how do we do
@nahiarabeer3 жыл бұрын
Thank u sir
@LearningLad3 жыл бұрын
Pleasure :)
@harshrawat0292 жыл бұрын
Can we generate different random numbers in a single run like if we write this in a for loop that is executing let say 20 times so is there a way to get different random numbers with every iteration of the loop? Actually I tried it with your specified method which is very helpful btw, but I need different random number with every single execution of the loop. Edit: I got it, We just need to do srand(time(NULL)+i) to get it done, it will change the seed for every iteration. Thank You so much for this video @LearningLad
@Bipinkumar-xv3ty4 жыл бұрын
thank you so much
@LearningLad4 жыл бұрын
You're welcome!
@jetdud97494 ай бұрын
Thanks!!!
@LearningLad4 ай бұрын
Most welcome
@arunfernandez19992 жыл бұрын
nice video great
@360ibra22 жыл бұрын
THANK YOU!!
@theturkish13732 жыл бұрын
Cheers mate!
@LearningLad2 жыл бұрын
No worries!
@Saikoushik-k4l4 ай бұрын
is it mandatory to include time.h here
@nimaibarman1828 Жыл бұрын
Thanks.
@LearningLad Жыл бұрын
You're welcome
@shoukatmulla96203 жыл бұрын
Can you explain if range between negative numbers to passitive - 25 to 75
@fallofmanbrand4 жыл бұрын
nice video bro
@kinanradaideh54792 жыл бұрын
what font is he using?
@umairwaseem8823 жыл бұрын
Bhai aik program bana jis me agar random number enter kiaye huay number ke saath match kre to wo msg koi sa bhi display krday In short "if random number = Entered user's number then prints any message depending upon certain condition"
@amirsadiq000012 жыл бұрын
If i want between 1 to 10 which logic i can you
@sfatini70973 жыл бұрын
Sir, please make video on how to make video for generating random colour in gfx library
@Sneaadler3 жыл бұрын
Thanks Thanks Thanks
@LearningLad3 жыл бұрын
Pleasure
@pranavjaiswal23793 жыл бұрын
Thankyou
@LearningLad3 жыл бұрын
Welcome
@Robotnic253 жыл бұрын
this definitely helped get me moving forward but when I close the program and then run it again, I get the same "random" values in the same order as I did the first time. Is there a reason for this?
@pratik_rana620493 жыл бұрын
Because number is initialized with the same value.
@modulmolla48913 жыл бұрын
Thanks dada
@edibegrace515110 ай бұрын
You did not just help me ohh...i love to infinity
@LearningLad9 ай бұрын
glad my video helped you :)
@shalemjeldi965411 ай бұрын
Bro thankyou bro
@jahzielperalta4843 жыл бұрын
I want 1 to 10 only but I still get one zero I follow the exact code. But either way ty so much I am gonna use it for a mini-game practice
@jahzielperalta4843 жыл бұрын
nvm I tried to re run it again it doesn't give me zero XD