49 - PROGRAM TO FIND GIVEN NUMBER FOR PRIME - C PROGRAMMING

  Рет қаралды 54,790

Sundeep Saradhi Kanthety

Sundeep Saradhi Kanthety

Күн бұрын

C Program to find whether given number is prime or not.
Any number can be called as prime only if the number is having two factors 1 and itself.

Пікірлер: 48
@mayurdhage2478
@mayurdhage2478 4 жыл бұрын
Excellent and very detailed explanation. Understood very well, Sir!
@gokulraj9566
@gokulraj9566 4 жыл бұрын
And finally u only clear the syntax of prime num sir.....🙏
@sanskrutisathe6806
@sanskrutisathe6806 2 жыл бұрын
Very awesome video sir Ur explanation is very easy ,simple to understand thank you sir for such great content
@kainzascovia9344
@kainzascovia9344 2 жыл бұрын
this is what i have been looking for...i don't know what too me long to find you
@_SaI_sRiKaNtH_
@_SaI_sRiKaNtH_ 2 жыл бұрын
Thank you for ur clear explanation sir
@pbalamoorthy9201
@pbalamoorthy9201 Жыл бұрын
Super explanation sir.fantastic.please upload video for aptitude sir which is helpful for placement sir
@aazadkhan5075
@aazadkhan5075 3 жыл бұрын
Very beautifully explained thank you so much
@alshaf3yabdalmonem472
@alshaf3yabdalmonem472 2 жыл бұрын
All my thanks for you sire
@PAVA1GKWORLD
@PAVA1GKWORLD 5 жыл бұрын
Sir, please upload the video on how to calculate the roots of a quadratic equation?
@bikrammajumdar5454
@bikrammajumdar5454 Жыл бұрын
This is very helpful sir.
@srinivasgowdas2178
@srinivasgowdas2178 2 жыл бұрын
Superb explanation sir
@gayathrirajan7645
@gayathrirajan7645 4 жыл бұрын
Superb sir please put videos for algorithm and flowchart
@PAVA1GKWORLD
@PAVA1GKWORLD 5 жыл бұрын
Very detailed sir excellent
@ritupatil4375
@ritupatil4375 3 жыл бұрын
Thank u so much sir it was really useful for me 😇😇
@suryadevsb
@suryadevsb 6 жыл бұрын
crystal clear.u r great sir.
@sundeepsaradhi
@sundeepsaradhi 6 жыл бұрын
hi thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.Keep following our channel.
@softwarekinga2z995
@softwarekinga2z995 3 жыл бұрын
super sir...understand very well
@Anonymous-xf6if
@Anonymous-xf6if 5 жыл бұрын
Thank you sir...you teach very well sir
@howltae
@howltae 2 жыл бұрын
Sir I respect you a lot 🙏❤️
@raamnaath
@raamnaath 4 жыл бұрын
Why we are Using Flag Variable ? without using any variable we can do it Sir? if(n%2==0) it is not Prime else it is Prime
@duggirambabu7792
@duggirambabu7792 2 жыл бұрын
1). *Can we do it, without using any variable (flag)?.* Yes we can do it. 2). *if(n%2==0) it is not a prime else it is a prime.* It is wrong condition.
@chiluvurideepthi6822
@chiluvurideepthi6822 4 жыл бұрын
Super explanation sir👌👌😇
@bhargavdharan
@bhargavdharan 4 жыл бұрын
Sir , instead of FLAG can we use any variable like k or any alphabet What is the meaning of FLAG?
@venkateshrockfort5804
@venkateshrockfort5804 4 жыл бұрын
it is nothing mean bro.. you can use any name
@bozzo1677
@bozzo1677 Жыл бұрын
​​@@venkateshrockfort5804 For prime number Flag=2 why? Can't we use Flag=3?? Would you don’t mind please help..
@chandrasekharakurathi7217
@chandrasekharakurathi7217 4 жыл бұрын
Sir for declaration process flag is flag =0
@jjayasankar9957
@jjayasankar9957 6 жыл бұрын
Thanks for your valuable information Sir
@maheshwaarsoundiraradjou2618
@maheshwaarsoundiraradjou2618 4 жыл бұрын
tks so much sir .if u dont mind post more videos
@ionguzun3952
@ionguzun3952 3 жыл бұрын
Thank you so much.
@deeshazable
@deeshazable 6 жыл бұрын
sir can u plz upload videos on programmes of straight line , newton raphson , trapezoidal rule
@heenachopra2259
@heenachopra2259 7 жыл бұрын
Sir I have a paper of CG on Tuesday.please make videos on hidden surface removal techniques asap.thnks
@sundeepsaradhi
@sundeepsaradhi 7 жыл бұрын
hi heena chopra sorry to say that i am not much aware of those concepts as they are beyond to our syllabus.
@msvpraveenpallapothu1720
@msvpraveenpallapothu1720 2 жыл бұрын
what is flag can you explain it
@hemanthhem2436
@hemanthhem2436 4 жыл бұрын
Play this vedio in 1.25x speed 😁 thank me later
@adityalokhande7465
@adityalokhande7465 6 жыл бұрын
Great sir,
@seemabyna8591
@seemabyna8591 3 жыл бұрын
Thanks a lot
@dimpletrivedi450
@dimpletrivedi450 3 жыл бұрын
Thank you sir
@rajukumarpeddaveti6073
@rajukumarpeddaveti6073 5 жыл бұрын
Palindrome plz..this type of example
@ManishKumar-eg7ke
@ManishKumar-eg7ke 6 жыл бұрын
Awesome!!!!!!!!!!
@mondayonwenefah9905
@mondayonwenefah9905 2 жыл бұрын
prime numbers using while loop
@mondayonwenefah9905
@mondayonwenefah9905 2 жыл бұрын
jump the explaining, get to the code
@vinaylofi3105
@vinaylofi3105 3 жыл бұрын
These code fails when u give 1
@duggirambabu7792
@duggirambabu7792 2 жыл бұрын
It doesn't fail. *Note:* 1 is not a prime number.
@omkarbhalerao4551
@omkarbhalerao4551 4 жыл бұрын
Can someone tell me what did I do wrong in the following Program, Please ? #include int main() { int count =0, i, number; printf("Enter the number which is to be determined :"); scanf("%d", &number); for (i = 1; i
@nishithagalla2211
@nishithagalla2211 3 жыл бұрын
You should not use ' ; ' (semicolon) after the if statement...
@himanshu5731
@himanshu5731 7 жыл бұрын
Thanks sir
@sundeepsaradhi
@sundeepsaradhi 7 жыл бұрын
hi himanshu thanks for your interest towards our channel and share my sessions with your friends.
@deeshazable
@deeshazable 6 жыл бұрын
Thnku sir
51 - FINDING FREQUENCY OF VOWELS, CONSONANTS,DIGITS,SPACES,WORDS - C PROGRAMMING
20:28
22 - PROGRAM TO FIND THE PRIME NUMBERS IN GIVEN RANGE - C PROGRAMMING
15:44
Sundeep Saradhi Kanthety
Рет қаралды 128 М.
When u fight over the armrest
00:41
Adam W
Рет қаралды 26 МЛН
World’s strongest WOMAN vs regular GIRLS
00:56
A4
Рет қаралды 41 МЛН
Linux operating system
23:27
Dr. Eman Shawky
Рет қаралды 54
reverse of a number in c|c program to print reverse of a number
11:18
Sudhakar Atchala
Рет қаралды 97 М.
recursion fibonacci series
9:50
Satpute Academy
Рет қаралды 208 М.
How to STUDY so FAST it feels like CHEATING
8:03
The Angry Explainer
Рет қаралды 1,6 МЛН
C_39 Do while loop in C with program | C Programming Tutorials
8:23
Jenny's Lectures CS IT
Рет қаралды 183 М.
20 - FACTORIAL PROGRAM - C PROGRAMMING
13:31
Sundeep Saradhi Kanthety
Рет қаралды 79 М.
struct Basics | C Programming Tutorial
24:44
Portfolio Courses
Рет қаралды 148 М.
54 - FUNCTIONS - C PROGRAMMING
37:03
Sundeep Saradhi Kanthety
Рет қаралды 363 М.
33 - ONE DIMENSIONAL ARRAYS DECLARATION, INITIALIZATION AND ACCESSING - C PROGRAMMING
41:34
When u fight over the armrest
00:41
Adam W
Рет қаралды 26 МЛН