Chandu Nagar, Delhi, India - 110094.
Details verified of Baliram Sah✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Hindi Mother Tongue (Native)
English Proficient
AKTU 2017
Bachelor of Technology (B.Tech.)
Chandu Nagar, Delhi, India - 110094
Phone Verified
Report this Profile
Is this listing inaccurate or duplicate? Any other problem?
Please tell us about the problem and we will fix it.
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Embedded Systems Training
3
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
3
Proficiency level taught
Basic C++, Advanced C++
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
3
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Embedded C Training
3
1. Which classes do you teach?
I teach C Language, C++ Language, Embedded C and Embedded Systems Classes.
2. Do you provide a demo class?
Yes, I provide a free demo class.
3. How many years of experience do you have?
I have been teaching for 3 years.
Answered on 20/04/2021 Learn Tuition
//Write a program to swap values of two variables with using third variable.
#include<stdio.h>
int main()
{
int x=10, y=20;
printf("Before swap x=%d x=%d\n",x,y); //x=10 y=20
int temp;// take third variable
temp=x; // assign value of x in temp variable
x=y; // assign value of y in x
y=temp; //assign value of temp in y
printf("After swap x=%d y=%d",x,y);// x=20 y=10
return 0;
}
//Write a program to swap values of two variables without using third variable.
#include<stdio.h>
int main()
{
int x=10, y=20;
printf("Before swap x=%d x=%d\n",x,y); //x=10 y=20
x=x+y;//adding x and y and assign in x =30
y=x-y; // subtract y from x and assign in y =10
x=x-y; //subtract y from x and assign in x =20
printf("After swap x=%d y=%d",x,y); // x=20 y=10
return 0;
}
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Embedded Systems Training
3
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
3
Proficiency level taught
Basic C++, Advanced C++
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
3
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Embedded C Training
3
Answered on 20/04/2021 Learn Tuition
//Write a program to swap values of two variables with using third variable.
#include<stdio.h>
int main()
{
int x=10, y=20;
printf("Before swap x=%d x=%d\n",x,y); //x=10 y=20
int temp;// take third variable
temp=x; // assign value of x in temp variable
x=y; // assign value of y in x
y=temp; //assign value of temp in y
printf("After swap x=%d y=%d",x,y);// x=20 y=10
return 0;
}
//Write a program to swap values of two variables without using third variable.
#include<stdio.h>
int main()
{
int x=10, y=20;
printf("Before swap x=%d x=%d\n",x,y); //x=10 y=20
x=x+y;//adding x and y and assign in x =30
y=x-y; // subtract y from x and assign in y =10
x=x-y; //subtract y from x and assign in x =20
printf("After swap x=%d y=%d",x,y); // x=20 y=10
return 0;
}
Share this Profile
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.