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.
Online Classes 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 class via Zoom
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
17
Proficiency level taught
Basic C++, Advanced C++
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in C Language Classes
17
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in BCA Tuition
17
BCA Subject
Java Programming, C Language Programming, Programming in C++ , Unix Shell programming
Type of class
Crash Course, Regular Classes
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
Online class via Zoom
Student'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
Crash Course, Regular Classes
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 12 Tuition
18
Board
State, CBSE, ISC/ICSE
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
Ask a Question
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
Ask a Question
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
Ask a Question
// 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
Ask a Question
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
Ask a Question
Ask a Question
Also have a look at
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in C++ Language Classes
17
Proficiency level taught
Basic C++, Advanced C++
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in C Language Classes
17
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in BCA Tuition
17
BCA Subject
Java Programming, C Language Programming, Programming in C++ , Unix Shell programming
Type of class
Crash Course, Regular Classes
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
Online class via Zoom
Student'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
Crash Course, Regular Classes
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Years of Experience in Class 12 Tuition
18
Board
State, CBSE, ISC/ICSE
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
Ask a Question
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
Ask a Question
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
Ask a Question
// 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
Ask a Question
Answered on 28/11/2018 Learn IT Courses/Programming Languages/C Language
Ask a Question
Ask a Question
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.