Sector 47, Gurgaon, India - 122018.
Verified
Details verified of Deepak✕
Identity
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
Master of Engineering - Master of Technology (M.E./M.Tech.)
Sector 47, Gurgaon, India - 122018
ID Verified
Education Verified
Phone 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 (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
17
Proficiency level taught
Advanced C++, Basic C++
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
17
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BCA Tuition
17
BCA Subject
Unix Shell programming, Programming in C++ , Java Programming, C Language Programming
Type of class
Crash Course, Regular Classes
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
Yes
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BTech Tuition
18
BTech Computer Science subjects
Java Programming, Object Oriented Programming & Systems, Linux Programming
BTech Branch
BTech Computer Science Engineering
Experience in School or College
Have 18 Years of teaching in engineering college.
Type of class
Crash Course, Regular Classes
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
Yes
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 12 Tuition
18
Board
CBSE, State, ISC/ICSE
CBSE Subjects taught
Computer Science
Experience in School or College
18 Years of teaching in Engineering College.
Taught in School or College
Yes
State Syllabus Subjects taught
Computer Science
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 (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
17
Proficiency level taught
Advanced C++, Basic C++
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
17
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BCA Tuition
17
BCA Subject
Unix Shell programming, Programming in C++ , Java Programming, C Language Programming
Type of class
Crash Course, Regular Classes
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
Yes
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in BTech Tuition
18
BTech Computer Science subjects
Java Programming, Object Oriented Programming & Systems, Linux Programming
BTech Branch
BTech Computer Science Engineering
Experience in School or College
Have 18 Years of teaching in engineering college.
Type of class
Crash Course, Regular Classes
Class strength catered to
Group Classes, One on one/ Private Tutions
Taught in School or College
Yes
Class Location
Online (video chat via skype, google hangout etc)
Student's Home
Tutor's Home
Years of Experience in Class 12 Tuition
18
Board
CBSE, State, ISC/ICSE
CBSE Subjects taught
Computer Science
Experience in School or College
18 Years of teaching in Engineering College.
Taught in School or College
Yes
State Syllabus Subjects taught
Computer Science
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.