I urge every students who already have or going to get a job to give a part of their salary to mam as guru dakshina. She deserves it. Every single day she uploads and clear every doubts of ours. We really can't thank you enough for all the efforts you been putting in.
#include int max(int, int); void main() { int a, b; printf("Enter two numbers:"); scanf("%d%d",&a,&b); int m=max(a,b); printf("maximum:%d",m); } int max(int x,int y) { if(x>y) return(x); else return(y); }
I am studying in NIT surat and our so called qualified professors never showed us practicals in their pc and cared if the student is understanding .thanks a lot mam🙏
Mam i wached your all vedios related funtions and after taking all lactures i feel that ab main apni college vali mam ko bhi jakr smjha skta hoon itna pdhlia
11:50 program that takes two arguments as input and checks which number is maximum: #include int findMax(int num1, int num2) { if (num1 > num2) { return num1; } else { return num2; } } int main() { int num1, num2; printf("Enter the first number: "); scanf("%d", &num1); printf("Enter the second number: "); scanf("%d", &num2); int max = findMax(num1, num2); printf("The maximum number is: %d ", max); return 0; }
Thankyou very much ma"am. I am able to complete each of you assignment with such a ease that even i am astonished.. I am just following you lectures and gaining confidence in coding.. thankyou ma'am.. really will always be grateful to have a mentor like you😃😃
I came to know about you mam When I searched about data structures and till now you are the best teacher with detailed explanation, and yeah thank you for everything ❤and may God bless you with all happiness and wealth ✨ Take care mam
Mam after this video pls make a video on passing array as function: 1. By declaring array as parameter in function 2. By declaring pointer in function to hold base address of array Pls mam 😊 also upload a video on this with example please please 🙂🙂
Answer to the question for max() function: #include int max(int, int); int main(void) { int x, y, c; printf("Enter 2 number: "); scanf("%d %d", &x, &y); c = max(x, y); printf("Max is %d", c); return (0); } int max(int a, int b) { if (a > b) { return (a); } else { return (b); } }
#include int maxNumber(int, int); void main(void) { int x, y, result; printf("Enter two numbers "); scanf("%d %d", &x, &y); result = maxNumber(x,y); printf("%d is the maximum number", result); } int maxNumber(int num1, int num2) { if(num1 > num2) return num1; else return num2; } //thanks mum.
#include Int max(int,int); Int main() { Int a,b,m; Printf("enter the values of a and b "); Scanf("%d %d",&a,&b); Max(a,b); } Int max(int x,int y) { If(a>b) { Printf("a is max number"); } Return a; Else { Printf("b is the max number"); } Return b; }
function to find the maximum number using ternary operator: #include int fun(int, int); void main() { int x, y,c; printf("Enter two numbers:"); scanf("%d %d", &x, &y); c= fun(x,y); printf("The greater number is: %d",c); } int fun(int a, int b) { int s=0; s=(a>b)?a:b; return s; }
Assignment: #include int max(int, int); int main(void) { int x, y, m; printf("Enter two numbers: "); scanf("%d %d", &x, &y); m = max(x, y); printf("%d is greater! ", m); } int max(int a, int b) { if(a > b) { return a; } else { return b; } }
max between two numbers #include void greater(int, int); void main(){ int a,b; greater(a,b); } void greater(int a, int b){ printf("Please enter for a and b:"); scanf("%d %d",&a,&b); if(a>b){ printf("A is greater than B, because a is %d and b is %d",a,b); } else{ printf("B is greater than A, because b is %d and a is %d",b,a); } }
// Maximum number with both para and return // #include #include int max(int,int); int max(int a,int b) { if(a>>b) { return(a); } else { return(b); } } void main () { clrscr(); int a,b,x; printf(" Enter a and b = "); scanf("%d%d",&a,&b); max(a,b); x=max(a,b); printf(" Maximum is %d",x); getch(); }
mam c++ return function you are please teaching mam i have searching more than return function but everyone is not clearly explain mam so explain this topic mam.please
#include int ismax(int x,int y){ // if (x>y) // return x; // else // return y;
int max=(x>y)?x:y; return max; } int main() { int a,b,res; printf("enter two num "); scanf("%d%d",&a,&b); res=ismax(a,b); printf("%d is maximim ",res); }
I urge every students who already have or going to get a job to give a part of their salary to mam as guru dakshina. She deserves it. Every single day she uploads and clear every doubts of ours. We really can't thank you enough for all the efforts you been putting in.
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
Me to property naam kar du.
@@sunsetpost4931 😂😂😂kar dee tab
My madam told us this classification of functions in a period ...but you made a separate video on 4 to make better understanding 💥❤️😭
dude she is the best teacher ever. ı was really struggling about understanding the functions. she made almost everything clear. she is a real gem
#include
int max(int, int);
void main()
{
int a, b;
printf("Enter two numbers:");
scanf("%d%d",&a,&b);
int m=max(a,b);
printf("maximum:%d",m);
}
int max(int x,int y)
{
if(x>y)
return(x);
else
return(y);
}
I am studying in NIT surat and our so called qualified professors never showed us practicals in their pc and cared if the student is understanding .thanks a lot mam🙏
A lot of love from pakistan.you gave your 100%.Thankyou very much
Mam i wached your all vedios related funtions and after taking all lactures i feel that ab main apni college vali mam ko bhi jakr smjha skta hoon itna pdhlia
One of the best teacher among all❤️❤️
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
11:50 program that takes two arguments as input and checks which number is maximum:
#include
int findMax(int num1, int num2) {
if (num1 > num2) {
return num1;
} else {
return num2;
}
}
int main() {
int num1, num2;
printf("Enter the first number: ");
scanf("%d", &num1);
printf("Enter the second number: ");
scanf("%d", &num2);
int max = findMax(num1, num2);
printf("The maximum number is: %d
", max);
return 0;
}
Thankyou very much ma"am. I am able to complete each of you assignment with such a ease that even i am astonished.. I am just following you lectures and gaining confidence in coding.. thankyou ma'am.. really will always be grateful to have a mentor like you😃😃
I came to know about you mam When I searched about data structures and till now you are the best teacher with detailed explanation, and yeah thank you for everything ❤and may God bless you with all happiness and wealth ✨ Take care mam
U made us to solve by ourselves after hearing the lecture🤩😍thank u so muchhh
all series of classification of function is very helpful
Im from USA. TYSM madam 👌 4:36
Mam after this video pls make a video on passing array as function:
1. By declaring array as parameter in function
2. By declaring pointer in function to hold base address of array
Pls mam 😊 also upload a video on this with example please please 🙂🙂
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
#include
int max(int ,int);
void main()
{
int a,b,c;
printf("Enter a and b:
");
scanf("%d%d",&a,&b);
c=max(a,b);
printf("%d is greater
",c);
}
int max(int x, int y)
{
if(x>y)
{
return x;
}
else
return y;
}
Answer to the question for max() function:
#include
int max(int, int);
int main(void)
{
int x, y, c;
printf("Enter 2 number: ");
scanf("%d %d", &x, &y);
c = max(x, y);
printf("Max is %d", c);
return (0);
}
int max(int a, int b)
{
if (a > b)
{
return (a);
}
else
{
return (b);
}
}
Thanks
Mam aap khub accha padhate hoo mujhe apka class pasand aaya aur mai mechanical student hu aap bohot mehent kr rahe ho☺️🙏
Thank you soo much mam, Because of your excellent teaching i learnt functions and also im eager to learn all concepts.
Mam I was doing a mistake of not taking c = add (a,b) now I thank you 🙏 😊 ☺ 😀 🙂
Assingment :
#include
#include
int s(int,int);
void main()
{
int a,b,c;
printf("Enter two numbers :
");
scanf("%d%d",&a,&b);
c=s(a,b);
printf("The greater number is : %d",c);
}
int s(int x,int y)
{
if(x>y)
return x;
else if(y>x)
return y;
}
Thank you 🙏
Mam please make videos on JavaScript specially logic part u ll get billions of blessings from all over the world
Thankyou so much mam........ ❤️
Thank you maam for your help. Now i am clear about this.
Tqs mam🥰
Love from nepal🇳🇵🥰
Best teacher who help me too score ccp♥️♥️♥️♥️♥️
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
Thank you so much mam for clearing my concept ❤🔥❤🚩
I'm more into C++ so
int isLarge(int, int);
int main()
{
int a, b, c;
cout a;
cout b;
c = isLarge(a, b);
cout
U have good programming knowledge mam
Thanku very much maam to clear my dought 🙏
3:26 i was shocked mam😆
thankyou so much mam...very helpful !!!!!!!!
Mam please do a video on Pascal triangle program it was asking many companies in interviews
Thank you so much ma'am!!
Thank you mam ❤😊
Love u mam........❤❤❤❤❤🤩😍😍😍😍
Thank you ma'am..☺☺
You look beautiful ❤ 🙌
Explanation clearly
ma'am upload the video how to calculate time complexity . in data structures playlist no video about time complexity
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
Thankyou so much mam ❤👍🏻
U are fabulous Mam👍...
#include
int maxNumber(int, int);
void main(void)
{
int x, y, result;
printf("Enter two numbers
");
scanf("%d %d", &x, &y);
result = maxNumber(x,y);
printf("%d is the maximum number", result);
}
int maxNumber(int num1, int num2)
{
if(num1 > num2)
return num1;
else
return num2;
}
//thanks mum.
Ma'am i didn't understood...why in main function its written void instead of int??
assingment :=
#include
int max(int,int);
int main()
{
int a,b,l;
printf("enter 2 no");
scanf("%d%d",&a,&b);
l=max(a,b);
printf("
grater is %d",l);
return 0;
}
int max(int x,int y)
{
if(x>y)
return x;
else
return y;
}
Great video 😊🙏
#include
Int max(int,int);
Int main()
{
Int a,b,m;
Printf("enter the values of a and b
");
Scanf("%d %d",&a,&b);
Max(a,b);
}
Int max(int x,int y)
{
If(a>b)
{
Printf("a is max number");
}
Return a;
Else
{
Printf("b is the max number");
}
Return b;
}
Thanks for the lect ma'am
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
function to find the maximum number using ternary operator:
#include
int fun(int, int);
void main()
{
int x, y,c;
printf("Enter two numbers:");
scanf("%d %d", &x, &y);
c= fun(x,y);
printf("The greater number is: %d",c);
}
int fun(int a, int b)
{
int s=0;
s=(a>b)?a:b;
return s;
}
Very beautiful ❤😊
i just love this woman. i wish i can be in her physical class, erudite woman
#include
Max(int,int);
Void main ()
{
Int a,b,M;
Printf ("enter two numbers
");
Scanf("%d%d"&a,&b);
M=Max(a,b);
Printf ("%d is maximum number" ,M);
}
Max(intx,inty)
{
If(a>b)
{
Return a;
}
Else
{
Return b;
}
}
hi bro...
Thanks bro
@@indrasenareddypolaka9258 Hiiii
@@sairampolisetty2059 welcome 🤗
Thanks mam love you ❤
thank you
Thanks mam
Saviour for coding
Assignment:
#include
int max(int, int);
int main(void)
{
int x, y, m;
printf("Enter two numbers:
");
scanf("%d %d", &x, &y);
m = max(x, y);
printf("%d is greater!
", m);
}
int max(int a, int b)
{
if(a > b)
{
return a;
}
else
{
return b;
}
}
She teaches so nicely but she sounds too strict... 😅😅
Padhle beta moka h...
Why we not take int main()
Mam, please cover the file handling concepts also..thank you
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
💙💜💜💜💙💙💙good teacher 👍 and cancept it and C's defferent job and sellary
mam y did u use return s y cant we use return c.. can plse help me out
Let me know ...why didn't you teaching the cloud computing like AWS and AZURE???
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
So beautiful 🥰🥰
Teri najro ne dil ka. ......
max between two numbers
#include
void greater(int, int);
void main(){
int a,b;
greater(a,b);
}
void greater(int a, int b){
printf("Please enter for a and b:");
scanf("%d %d",&a,&b);
if(a>b){
printf("A is greater than B, because a is %d and b is %d",a,b);
}
else{
printf("B is greater than A, because b is %d and a is %d",b,a);
}
}
Mam please make a video on recursion
main function returns value to whom
Why mam write void because return value is there in that function
Function With Argument before going to party :)
Is this a last part in function!?
// Maximum number with both para and return //
#include
#include
int max(int,int);
int max(int a,int b)
{
if(a>>b)
{
return(a);
}
else
{
return(b);
}
}
void main ()
{
clrscr();
int a,b,x;
printf(" Enter a and b = ");
scanf("%d%d",&a,&b);
max(a,b);
x=max(a,b);
printf(" Maximum is %d",x);
getch();
}
Why is there written s=0?
Mam course kab tak complete ho jayega
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
I love your voice ma'am
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
Maam Why we use these 4 types but any type is same answer
Why we are using s=0; instead of simply declaring int s;
S u can use int s if u use int s=0 then s is initialized with 0
Good evening ma'am
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
respect ++
#include
int max(int,int);//fun declaration
void main()
{
int c;
c= max(12,13);//fun calling
printf("%d",c);
}
int max(int x,int y)//called function
{
if(x>y)
{
return x; //fun definition
}
else
{
return y;//fun definition
}
}
Recursion pls and it's tough prativad quesn mam.pls
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
Assignment Answer:-
#include
int max(int, int);
void main()
{
int a, b, m;
printf("Enter 2 numbers: ");
scanf("%d %d", &a, &b);
m = max(a, b);
printf("The maximum number = %d", m);
}
int max(int x, int y)
{
if(x > y)
return x;
else
return y;
}
1st view
Mam please promote us also please in community's post
Thank you mam
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
mam c++ return function you are please teaching mam i have searching more than return function but everyone is not clearly explain mam so explain this topic mam.please
❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
mam can u give me offline coaching
😁😃😁😆
samajh nhi aaya kya bola pr acha laga sunnke....
Can we use main function more than once in a program?
💞
Mam u can try to tell in Telugu please
Ye dress acchi h
hello
👍
Didi ap ache ho
ua-cam.com/video/tPaj5kF4l3I/v-deo.html
Monu sir aapka bahen # haryana
you are so cute😍😊😚🐻🐰😍😊😚🐻🐰😍😊😚🐻❤❤❤❤❤❤❤❤❤ love you sister
#include
int ismax(int x,int y){
// if (x>y)
// return x;
// else
// return y;
int max=(x>y)?x:y;
return max;
}
int main()
{
int a,b,res;
printf("enter two num ");
scanf("%d%d",&a,&b);
res=ismax(a,b);
printf("%d is maximim ",res);
}
Ma'am i want to work with you as a thumbnail editor plz reply me if you are interested in it i will send some samples.
Thank you.