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 Panchkula
CBSE 12 Board Marks Booster in PCM
By Umesh SharmaClass 12 TuitionSector 14, Panchkula
Course includes Concept clarity with Daily life examples Starting from basics approach Thorough understanding of the subject Solving Ncert and Ncert... Read More
₹ 36,000Physics Classes for CBSE/NEET
By Umesh SharmaClass 11 TuitionPanchkula Sector-15, Panchkula
Course includes Ncert book coverage Ncert Exampler book Coverage Previous years Neet Exam Questions Special practice sheets Regular Doubts session... Read More
₹ 35,000Spoken English classes
By MeghaSpoken EnglishSector 11, Panchkula
English is the Language of International Communication and gives lots of career opportunities. Career Makerz 'Online Spoken English Classes' starting... Read More
₹ 2,000Spoken English classes
By MeghaSpoken EnglishSector 11, Panchkula
English is the Language of International Communication and gives lots of career opportunities. Career Makerz 'Online Spoken English Classes' starting... Read More
₹ 2,000How 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;
}