This is your last video (23.03.2021) and i just wanted to say that i'm soo glad that i found your playlist on data structures and algorithms, i was hopeless about this subject... I think you will help a looot of future students, like millions.. so keep the good work on, and teach always in the way you do: with knowledge and clearity, quality is always > then quantity. Gently from Italy.
Dear Jenny, May you please make some videos on: - C pre-processors - macros - Storage classes in C (auto, extern, static, register) - Command-line arguments in C Looking forward to a more comprehensive series like this on OOP (Java, C++) and Computer Architecture too! Thank you very much for your time and effort in training us🙏 Also, I am so happy and proud of a lady like you with this much confidence👏 And keep up the good work 💪
#include Void main() { int s; Enum subjects{maths, science,history,English}; printf("enter the subjects:"); Scanf("%d",&s); Switch(s) { case maths:printf("maths"); break; case science:printf("science"); break; case history:printf("history"); break; case english:printf("english"); break; default:printf("not in list"); break; } } O/P enter the subjects:3 english
You help me throughout my course in Electrical Engineering, now I'm doing my final year. Thank you Jenny, all the love from Azania(so called south africa)
#include #include void main() { enum Shape{ Circle,Triangle,Rectangle }; printf("Hi Choose Shape!!! 0 for Circle 1 for Triangle 2 for Rectangle "); int ch; scanf("%d",&ch); switch(ch) { case Circle:printf(" You have choosen Circle"); break; case Triangle:printf(" You have choosen Triangle"); break; case Rectangle:printf(" You have choosen Rectangle"); break; default:printf(" Wrong Character Entered"); break; } }
We can't refer 'case 'with string like "Sunday" etc.....it only accepts either integer or char constants .... .overall I loved the way she explains things...she has covered most of doubts which can strike in our minds while studying this🤗🤗🤗
#include enum gender {Female=0, Male=1, Others=2}; int main() { int value; printf("Enter your gender code to get the discount: "); printf("0 for Male, 1 for Female and 2 for Others "); scanf("%d", &value); switch (value) { case Female: printf("Your discount: 50 percent "); break; case Male: printf("Your discount: 40 percent "); break; case Others: printf("Your discount: 60 percent "); break; default: printf("Please enter a valid code "); break; } return 0; }
Assignment of enum in switch case: #include //Define enum enum Day {Sun, Mon, Tue, Wed, Thur, Fri, Sat}; int main(void) { //Declare enum enum Day Today; //Assign to variable Today=Fri; //enum in switch case switch(Today) { case Sun: printf("Today is Sunday and value is: %d",Today); break; case Mon: printf("Today is Monday and value is: %d",Today); break; case Tue: printf("Today is Tuesday and value is: %d",Today); break; case Wed: printf("Today is Wednesday and value is: %d",Today); break; case Thur: printf("Today is Thursday and value is: %d",Today); break; case Fri: printf("Today is Friday and value is: %d",Today); break; case Sat: printf("Today is Saturday and value is: %d",Today); break; default: printf("Invalid day"); } return 0; }
Hi ma'am I am learning c from your videos it helped me alot..i am still learning at this late night..i thought I should take a 10min break and saw your funny videos I was stunned by your behind the scenes video which was uploaded a couple of years ago and I am stunned by your effort on teaching us (I didn't know it was that hard)i am sure there is a lot more hardwork which you can't really make a video and show us ..i just wanna say thank you from my heart ..lots of love from Kerala...❤️ A proud student😻
enum is a part of C++, if you use C Compiler it will not be work.... Lot of users use C++ compilor for C programming... So it is Like Jurcy cow concept to teach enum in C instead of C++
Hii mam I have a doubt in this, #include Enum language {c,java=3,python,php}; main(){ float arr[c+php]={1.0f,2.1f,3.2f,4.3f,5.4f}; enum language lang=python; Printf(“% .1f”,arr[lang>>1+1]); } Output: 2.1 How this output is possible (I need explanation for this mam)
Dear mam can u make videos on c pre processor commands and in data structures skip lists . On skip lists no proper video is made I fetched many all are confusing
Believe in yourself, take on your challenges, dig deep within yourself to conquer fears. Never let anyone bring you down. You got to keep going.”
This is your last video (23.03.2021) and i just wanted to say that i'm soo glad that i found your playlist on data structures and algorithms, i was hopeless about this subject...
I think you will help a looot of future students, like millions.. so keep the good work on, and teach always in the way you do: with knowledge and clearity, quality is always > then quantity. Gently from Italy.
Dear Jenny, May you please make some videos on:
- C pre-processors
- macros
- Storage classes in C (auto, extern, static, register)
- Command-line arguments in C
Looking forward to a more comprehensive series like this on OOP (Java, C++) and Computer Architecture too! Thank you very much for your time and effort in training us🙏 Also, I am so happy and proud of a lady like you with this much confidence👏
And keep up the good work 💪
Command line argument in c
#include
Void main()
{
int s;
Enum subjects{maths, science,history,English};
printf("enter the subjects:");
Scanf("%d",&s);
Switch(s)
{
case maths:printf("maths");
break;
case science:printf("science");
break;
case history:printf("history");
break;
case english:printf("english");
break;
default:printf("not in list");
break;
}
}
O/P
enter the subjects:3
english
It’s great that you are able to condense a time consuming concept to 20 mins.
i study in nit.......but i must say u teach better than our phd holder professors
You help me throughout my course in Electrical Engineering, now I'm doing my final year. Thank you Jenny, all the love from Azania(so called south africa)
The best explanation on youtube, thank you very much. Now I understood how it works and why the enum❤❤❤
As a lecturer, i am fond of with ur lectures. 👍
Asi teacher ho toh ma roz class attend karunga mast samjhaya. Mam apne ❤🕊️
No one can explain better than u mam,ur teaching experience is too good mam,so plz 🙏 do videos on all concepts.
The way you teach is really very nice and understandable, so thank you so much.
#include
#include
void main()
{
enum Shape{
Circle,Triangle,Rectangle
};
printf("Hi Choose Shape!!!
0 for Circle
1 for Triangle
2 for Rectangle
");
int ch;
scanf("%d",&ch);
switch(ch)
{
case Circle:printf("
You have choosen Circle");
break;
case Triangle:printf("
You have choosen Triangle");
break;
case Rectangle:printf("
You have choosen Rectangle");
break;
default:printf("
Wrong Character Entered");
break;
}
}
@@udaysinghrana5725 output?
I am thankful for all of those who said NO to me. It’s because of them I’m doing it myself.”
Love you mam ❤❤
I cleared 5th sem with help of your video❤
Hello
you are EEE student am i right?
@@arunprasanth1186 No I am CSE student and passout in this year.
I think I got the perfect teacher for programming!!!
one of very respected teachers to me !!
Your teaching skills very nice
I want a series like this on Discrete Mathematics. I hope you will think about it.
It's a good video about enum type thanks
We can't refer 'case 'with string like "Sunday" etc.....it only accepts either integer or char constants ....
.overall I loved the way she explains things...she has covered most of doubts which can strike in our minds while studying this🤗🤗🤗
hello mam !
Good evening🥰
Thanku for this Amazing session🙏🤩
@@theheronclub2001 🙏
#include
int main()
{
enum { sun, mon, tue, wed, thr, fri, sat};
int a;
printf("enter any day");
scanf("%d",&a);
switch(a)
{
case sun: printf("have fun");
break;
case mon:printf("show up");
break;
case tue: printf("show up everyday");
break;
case wed: printf("show up everyday");
break;
case thr: printf("keep showing up");
break;
case fri: printf("last mile, cheers");
break;
case sat: printf("wohoo!! you did it:-)");
break;
default: printf("try typing 0 to 6");
}
}
Mam really you are looking so.... Cute while teaching 😍
Plz don't left without replying
Being a doctor it's very difficult to focus on what she is teaching but still I am trying to learn. 😂😂 She is gorgeous 🤩
Great teacher regarding
ma'am you're examples are so bad to understand
but you're teaching is amazing!!!
Self referential structure 😢😢
#include
enum gender {Female=0, Male=1, Others=2};
int main() {
int value;
printf("Enter your gender code to get the discount:
");
printf("0 for Male, 1 for Female and 2 for Others
");
scanf("%d", &value);
switch (value) {
case Female:
printf("Your discount: 50 percent
");
break;
case Male:
printf("Your discount: 40 percent
");
break;
case Others:
printf("Your discount: 60 percent
");
break;
default:
printf("Please enter a valid code
");
break;
}
return 0;
}
The teacher we want
Great explanation mam 💯👍
thank you
mam your lectures are really amazing request u to pls upload videos on macros in c programming
Thanks mam
Ap bahut accha padhate ho mam
bhai pahle English sikhni pdegi ..bol kya rhi h ..smaj me nhi aa rha muje to
thank you mam ji😍😍😍😍😍
Very nice video
Thank you so much Mam.
Volatile,extern,
Mam please make a video on command line argument....🙏🙏
what is command line argument??
So my roll number is 45. thank you.
Mam I'm here Rahul 😂
Assignment of enum in switch case:
#include
//Define enum
enum Day {Sun, Mon, Tue, Wed, Thur, Fri, Sat};
int main(void)
{
//Declare enum
enum Day Today;
//Assign to variable
Today=Fri;
//enum in switch case
switch(Today)
{
case Sun:
printf("Today is Sunday and value is: %d",Today);
break;
case Mon:
printf("Today is Monday and value is: %d",Today);
break;
case Tue:
printf("Today is Tuesday and value is: %d",Today);
break;
case Wed:
printf("Today is Wednesday and value is: %d",Today);
break;
case Thur:
printf("Today is Thursday and value is: %d",Today);
break;
case Fri:
printf("Today is Friday and value is: %d",Today);
break;
case Sat:
printf("Today is Saturday and value is: %d",Today);
break;
default:
printf("Invalid day");
}
return 0;
}
Please can you make a video on command line arguments and static libraries in C programming
Good mam MyUstadG ki tra ap k method be bot acha ha
Mam can u please upload a video class on command line arguments plzzzzzzz .........
Thank you mam for video
01:45
thanks maam love from satyajit .🙃
Hi ma'am I am learning c from your videos it helped me alot..i am still learning at this late night..i thought I should take a 10min break and saw your funny videos I was stunned by your behind the scenes video which was uploaded a couple of years ago and I am stunned by your effort on teaching us (I didn't know it was that hard)i am sure there is a lot more hardwork which you can't really make a video and show us ..i just wanna say thank you from my heart ..lots of love from Kerala...❤️
A proud student😻
Hello 👋👋😍😍
@@Shivammishrachemistryfaculty hello🙂
@@N1v3dh nice dp
@@Shivammishrachemistryfaculty thank you dear😌😌❤️
@@Shivammishrachemistryfaculty you look amazing too😻
Pls upload a video on setjmp and longjmp
Mam ,make a video on command line arguments
Could You please explain about command line arguments in C
Mam ASCII Code is the topic that we want. Thank You
Nice explanation 👍👍👍
Hello
Lub u Jennie ❤️
Mam can we take enum value by scanf function?
you miss comment line arguments and preprocessor ma'am
Pls make a video on commanfline arguments
Maam please explain structures with functions
Real time example of enum is
Classic explanation. Thanks jenny :)
But maam in a class more then one Rahul, but Roll no is unique, so roll no is good.🤗
madam please teach threadung and multthreading in c
Good evening madam
Ma’am is this playlist complete ?
Super teach madam,,, and you are also so beautiful
Please create a project in C
Kindly is there any video about variadic functions in C ? Kindly do one ..... thanks for the great work you are doing
And also for linked lists
Ma'am you are looking so sweet today 😑😪😌
Mam how many topics we are left over in C please tell me mam
😊😊
0
enum is a part of C++, if you use C Compiler it will not be work.... Lot of users use C++ compilor for C programming... So it is Like Jurcy cow concept to teach enum in C instead of C++
mam can explain how to use scanf for enum for user
I am here Just to watch your cuteness 🥰
Hii mam I have a doubt in this,
#include
Enum language {c,java=3,python,php};
main(){
float arr[c+php]={1.0f,2.1f,3.2f,4.3f,5.4f};
enum language lang=python;
Printf(“% .1f”,arr[lang>>1+1]);
}
Output: 2.1
How this output is possible (I need explanation for this mam)
You are a good koschan
i think;
lang>>1 is 2
lang>>1+1 is 1
because machine starts reading from right side
it thinks
lang>>(1+1)
Lang=4
Arr[4>>1+1]
+ Have high precedence than >>
So first 1+1=2
Then 4>>2=1
Arr[1]=2.1
First comment
I think you forgot bitfield.....
Please say about volatile keyword
❤❤❤
Mam please start telling about java programs
Mam your are left with one more concept that is bit filed
Yeha pe v male ko sirf 25% discount mila
Please create a project in c
Dear mam can u make videos on c pre processor commands and in data structures skip lists . On skip lists no proper video is made I fetched many all are confusing
Mam please start C++
Madam ji mujhe notes chahiye mca ka
Ma'am internship video please......
First view
madam please teach thereding and multthreding ijn C
Love you medam
4th sem computer science video links unnaya
Hi mam how are you?
Mam, javascript making video
Mai to apko dekne aya hu😂
Hlo jenny mam u r superb mam
Hello
@@Shivammishrachemistryfaculty hii
@@akhilmittal3283 kaha se ho aap ??🥰
@@Shivammishrachemistryfaculty hmm
Mam plz start c++
Mam who is rahul😅
Hii mam
Madam are married 😍
Data seince course in you video upload mam