Search from over 6,50,000+ Tutors, Trainers and Training Institutes
What do you want to learn?
No Matching Category Found x
Please select a Categoryx
Where do you need it?
Please select a Locationx
Popular Courses in Dehradun
We Teach English as No one Does!
By Ambika KumarSpoken EnglishKaranpur, Dehradun
Get that winning edge over others! Learning together in a relaxed atmosphere at the Smart Learning Classes is definitely more fun and rewarding than trying... Read More
₹ 2,250IELTS Online Classes
By Anuradha BansalIELTS CoachingNathan Pur, Jogiwala, Dehradun
The online course covers all four modules of the exam, namely listening, reading, writing and speaking. I conduct a diagnostic test of the students so... Read More
₹ 9,000C, C++ & Data Structures
By Kritarth SrivastavaC++ LanguagePrem Nagar, Dehradun
This course is designed for both Beginners (Intermediate Classes) as well as Degree Level Students (BCA, B.Tech). C & C++ Programming C... Read More
₹ 6,500PTE Academic
By Ambika KumarPTE Academic Exam CoachingDehradun City, Dehradun
TULIPS ACADEMY OF ENGLISH LANGUAGE has been engaged in imparting knowledge of English Language to all since 1989, through an array of specialized courses... Read More
₹ 3,500How UrbanPro works
Post your requirement
Get customized responses
Compare & hire smartly
Find best Tutors, Trainers & Training Institutes for your requirement on India's Favourite Learning Destination.
Post your RequirementShow previous answers
Nishtha Kareer replied | 3 days ago
import java.util.*;
class Swap
{
public static void main(String a[])
{
System.out.println("Enter the value of x and y");
Scanner sc = new Scanner(System.in);
/*Define variables*/
int x = sc.nextInt();
int y = sc.nextInt();
System.out.println("before swapping numbers: "+x +" "+ y);
/*Swapping*/
x = x + y;
y = x - y;
x = x - y;
System.out.println("After swapping: "+x +" " + y);
}
}
Show previous answers
Shravani M replied | 3 days ago
You can do it but under the guidance of a yoga trainer. Asanas that strengthen the knee without putting pressure on them should be practised. Join a yoga class and start a regular practice. It will not only keep you fit, but your knee problem will also be alleviated.
Pratheep S replied | 3 days ago
Yes, 100%, but we should see their body condition first. Then only we can give them correct asanas for old age people.
Show previous answers
Gouri Kar replied | 3 days ago
Go for SAP HCM.
Gorishaa Mehta replied | 3 days ago
HCM module would be the best in your case.
Thousands of experts Tutors, Trainers & other Professionals are available to answer your questions
Ask a ProHow UrbanPro works for Tutors and Trainers
Create Free Profile
Upload Photos, Portfolio, Certificates, Add Description, Qualification, Achievements to Help students Discover You
Connect with Students
Respond to Enquiries or Search Prospective students in Your Location
Grow Your Credentials
Collect Reviews, Enrich your Profile & Reach out to more students
Reach out to more students
Create your profile nowRequirements by Customers
Post requirement and connect with the tutors in your locality
Find best tutors, trainers & institutes near you on UrbanPro
Post your learning requirement
Mandeep Das replied | 3 days ago
Step-by-step explanation:
Let’s declared three variables temp, a and b—code logic to swap two numbers using the third variable.
C Program to swap two numbers without using the third variable:
We have understood how to swap two numbers using third variable. Let’s write a c code to implement them.
#include <stdio.h>
int main(void) // Variable declaration
{
int a, b, temp;
printf("Enter two numbers a and b ");
scanf("%d %d", &a, &b);
// Swap logic
temp = a;
a = b;
b = temp;
printf("\n After swapping \na = %d\nb = %d\n", a, b);
return 0;
}