 
   
 Sector 47, Gurgaon, India - 122018.
 Verified 17 yrs of Exp 
Details verified of Deepak✕
  Identity
Identity 
  Education
Education 
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Hindi
English
  Maharshi Dayananda University  2010
Maharshi Dayananda University  2010  
Master of Engineering - Master of Technology (M.E./M.Tech.)
Sector 47, Gurgaon, India - 122018
  ID Verified
 ID Verified 
  Education Verified
 Education Verified 
  Phone Verified
 Phone Verified 
  Email Verified
 Email 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 Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in C++ Language Classes
17
Proficiency level taught
Advanced C++, Basic C++
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in C Language Classes
17
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in BCA Tuition
17
BCA Subject
Programming in C++ , Unix Shell programming, C Language Programming, Java Programming
Type of class
Regular Classes, Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in BTech Tuition
18
BTech Computer Science subjects
Linux Programming, Object Oriented Programming & Systems, Java Programming
BTech Branch
BTech Computer Science Engineering
Experience in School or College
Have 18 Years of teaching in engineering college.
Type of class
Regular Classes, Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Class 12 Tuition
18
Board
CBSE, ISC/ICSE, State
Experience in School or College
18 Years of teaching in Engineering College.
Subjects taught
Computer Science
Taught in School or College
Yes
Upcoming Live Classes
1. For what proficiency level do you teach ?
Advanced C++ and Basic C++
2. Which classes do you teach?
I teach BCA Tuition, BTech Tuition, C Language, C++ Language and Class 12 Tuition Classes.
3. Do you provide a demo class?
Yes, I provide a free demo class.
4. How many years of experience do you have?
I have been teaching for 17 years.
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
This is actually type casting.
Type casting in c is done in the following form:
(data_type)expression;
where, data_type is any valid c data type, and expression may be constant, variable or expression.
For example,
x=(int)a+b*d;Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
Use pointer.
#include<stdio.h>
#include<string.h>
data_type function_name (char *s)
{//write your code.}
int main()
{char *str1;
char str2[size];
scanf("%s",str1);
scanf("%s",str2);
data_type var1 = function_name(str1);
data_type var2 = function_name(str2)return 0;
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
// C program to rotate a matrix by 180 degrees 
#include <stdio.h> 
#define N 3 
// Function to Rotate the matrix by 180 degree 
void rotateMatrix(int mat[][N]) 
{ 
 // Simply print from last cell to first cell. 
 for (int i = N - 1; i >= 0; i--) { 
 for (int j = N - 1; j >= 0; j--) 
 printf("%d ", mat[i][j]);
printf("\n"); 
 } 
}
// Driven code 
int main() 
{ 
 int mat[N][N] = { 
 { 1, 2, 3 }, 
 { 4, 5, 6 }, 
 { 7, 8, 9 } 
 };
rotateMatrix(mat); 
 return 0; 
} 
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in C++ Language Classes
17
Proficiency level taught
Advanced C++, Basic C++
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in C Language Classes
17
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in BCA Tuition
17
BCA Subject
Programming in C++ , Unix Shell programming, C Language Programming, Java Programming
Type of class
Regular Classes, Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in BTech Tuition
18
BTech Computer Science subjects
Linux Programming, Object Oriented Programming & Systems, Java Programming
BTech Branch
BTech Computer Science Engineering
Experience in School or College
Have 18 Years of teaching in engineering college.
Type of class
Regular Classes, Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Class 12 Tuition
18
Board
CBSE, ISC/ICSE, State
Experience in School or College
18 Years of teaching in Engineering College.
Subjects taught
Computer Science
Taught in School or College
Yes
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
This is actually type casting.
Type casting in c is done in the following form:
(data_type)expression;
where, data_type is any valid c data type, and expression may be constant, variable or expression.
For example,
x=(int)a+b*d;Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
Use pointer.
#include<stdio.h>
#include<string.h>
data_type function_name (char *s)
{//write your code.}
int main()
{char *str1;
char str2[size];
scanf("%s",str1);
scanf("%s",str2);
data_type var1 = function_name(str1);
data_type var2 = function_name(str2)return 0;
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
// C program to rotate a matrix by 180 degrees 
#include <stdio.h> 
#define N 3 
// Function to Rotate the matrix by 180 degree 
void rotateMatrix(int mat[][N]) 
{ 
 // Simply print from last cell to first cell. 
 for (int i = N - 1; i >= 0; i--) { 
 for (int j = N - 1; j >= 0; j--) 
 printf("%d ", mat[i][j]);
printf("\n"); 
 } 
}
// Driven code 
int main() 
{ 
 int mat[N][N] = { 
 { 1, 2, 3 }, 
 { 4, 5, 6 }, 
 { 7, 8, 9 } 
 };
rotateMatrix(mat); 
 return 0; 
} 
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
 
 Share this Profile
Also have a look at
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.