Kedla, Mandu, India - 825325
Details verified of Usha K.✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in Class I-V Tuition
2
Fees
₹ 400.0 per hour
NIOS Subjects taught
Science, Computers, EVS, English, Mathematics, Hindi
Board
IGCSE, CBSE, NIOS, DAV board, ICSE, State, International Baccalaureate
State boards taught
West Bengal State Board, Bihar State Board, Himachal Pradesh State Board, Andhra Pradesh State Board, Rajasthan State Board, Uttarakhand State Board, Odisha State Board
IB Subjects taught
Computers, Hindi, Science, English
CBSE Subjects taught
English, Social Science, Science, Hindi, Computers, EVS, Mathematics
ICSE Subjects taught
Social Studies, EVS, Computer science, Hindi
IGCSE Subjects taught
Mathematics, Hindi, English
Taught in School or College
No
State Syllabus Subjects taught
English, Computer Science, EVS, Mathematics, Hindi, Science, Social Science
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in BA Tuition
1
BA Humanities Subjects
Sociology, History, Geography
Field tutored for
Computer Science, Sociology, Political science, English, Geography, Hindi, Multi-Media and Mass Communication, Economics, History, Humanities
BA Computer Science Subjects
Programming in JAVA, Internet Technologies, Database Management Systems, Operating Systems, Programming Fundamentals using C++, Computer Networks, Software Engineering
BA Multi Media and Mass Communication Subjects
Communication, Media and Society, English Communication, Social Media
Experience in School or College
I have experience of 6 years
Type of class
Regular Classes, Crash Course
Class strength catered to
One on one/ Private Tutions, Group Classes
Taught in School or College
Yes
BA English Subjects
Environmental Study, Soft Skills, Indian Writing in English
BA Economics Subjects
Indian Economy
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Years of Experience in C Language Classes
6
Teaching Experience in detail in C Language Classes
As I have done engineering I know I can facilitated courses aimed at introducing students to the core concepts and practical applications of the C programming language. The curriculum was designed to cater to both beginners and those with some programming background, ensuring a comprehensive learning experience for all participants.
Class Location
Online Classes (Video Call via UrbanPro LIVE)
Student's Home
Tutor's Home
Type of Computer course taken
Training in Software application usage, Training in Computer tools usage, Basics of Computer usage, Software Programming
4 out of 5 1 review
Shoaib Sohaib
Spoken English
I liked
Class Content
Teaching Method
Teacher's Knowledge
Answered on 09 May Learn IT Courses/Programming Languages/C Language
Answered on 09 May Learn IT Courses/Programming Languages/C Language
Answered on 08 May Learn IT Courses/Programming Languages/C Language
Pointers are one of the most powerful features of the C programming language. A pointer is a variable that stores the memory address of another variable. In simpler terms, it "points" to the location of a variable in memory.
like example :
void *genericPtr;
int num = 10;
genericPtr = # // Assigning the address of num to a void pointer
Answered on 08 May Learn IT Courses/Programming Languages/C Language
In the C programming language, the #
symbol is used to denote preprocessor directives. Preprocessor directives are commands to the compiler that instruct it to perform certain actions before the actual compilation process begins. These directives are processed by the preprocessor, which is a separate phase of the compilation process.
Answered on 08 May Learn IT Courses/Programming Languages/C Language
In the C programming language, void main()
is not a valid signature for the main function. The correct signature for the main()
function in C is either int main()
or int main(int argc, char *argv[])
.
The main()
function serves as the entry point of a C program. It is where the execution of the program begins. The int
return type indicates that the main()
function should return an integer value to the operating system upon completion. By convention, a return value of 0 typically indicates successful execution, while a non-zero value indicates an error or abnormal termination.
Here's a brief explanation of the correct signatures:
int main()
: This signature is used when your program doesn't require any command-line arguments. The absence of parameters means that the program doesn't receive any arguments from the command line.
int main(int argc, char *argv[])
: This signature is used when your program needs to accept command-line arguments. The argc
parameter represents the count of command-line arguments passed to the program, and argv[]
is an array of strings containing those arguments.
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.