Skip to content
MySirG.Com

MySirG.Com

Learning Solutions…

Menu

  • Home
  • Competitive Coding
  • Premium
  • Join Coaching
  • Campus Prep.
    • Video Content
    • Interview Questions
      • Java Interview Questions
    • Objective Questions
    • Tech Talks
    • Exam Notice
  • Video Courses
    • Motivation and Guidance
    • English Speaking
    • Programming Languages
      • python
      • C Language
      • C++ Videos
      • Java SE (Core Java)
      • Advance Java | Java EE
      • PHP-MySQL
      • Kotlin
      • Javascript
    • Data Structure
    • DBMS
    • Building Career in Web Development
    • Android
    • Computer Fundamentals
    • WordPress
  • Prog. Examples
    • Python Programs
    • C Programs
    • CPP Programs
    • Data Structure Programs
    • Java Programs
    • PHP-MySQL Programs
    • Kotlin Programs
  • Webcast and LIVE
    • LIVE sessions
    • MySirG Webcast
  • Login

Month: June 2016

Arrays in C

1. #include “stdio.h” int main() { int arr[5]; // Assume that base address of arr is 2000 and size of integer // is 32 bit arr++; printf(“%u”, arr); return 0; } (a) 2002 (b) 2004 (c) 2020 (d) lvalue required

saurabhsir June 18, 2016June 18, 2016 C Language Read more

Recursion in C

1. #include “stdio.h” int fun(int n) { if (n == 4) return n; else return 2*fun(n+1); } int main() { printf(“%d “, fun(2)); return 0; } (a) 4 (b) 8 (c) 16 (d) Runtime Error 2. Consider the following recursive

saurabhsir June 17, 2016June 17, 2016 C Language Read more

functions in C

1. #include “stdio.h” int main() { int i = 5; printf(“%d %d %d”, i++, i++, i++); return 0; } (a) 7 6 5 (b) 5 6 7 (c) 7 7 7 (d) Compiler Dependent 2. #include “stdio.h” int main() {

saurabhsir June 17, 2016June 17, 2016 C Language Read more

Loops in C

1. #include “stdio.h” int main() { int i; for (i = 9; i!=0; i–) printf(“i = %d”, i–); return 0; } (a) 9 7 5 3 1 (b) 9 8 7 6 5 4 3 2 1 (c) Infinite Loop

saurabhsir June 17, 2016June 17, 2016 C Language Read more

Decision Control in C

1. Find output of the following program #include “stdio.h” int main() { int i; if (printf(“0”)) i = 4; else i = 6; printf(“%d”, i); return 0; } (a) 4 (b) 6 (c) 04 (d) 06 2. Find output of

saurabhsir June 16, 2016June 16, 2016 C Language Read more

Operators in C

1. Find output of the following program #include “stdio.h” int main() { int x, y = 5, z = 5; x = y == z; printf(“%d”, x); getchar(); return 0; } (a) Compiler Error (b) 0 (c) 1 (d) 8

saurabhsir June 16, 2016June 16, 2016 C Language Read more
  • Next »

Quick Links

  • How to install code::blocks?

Words from students

Viewers of mysirg.com are welcome to review this website. Tell me how you good and needful this mission of teaching students for FREE in Hindi through video lectures.

Chandra Shekhar -Jaipur सर आप बहुत अच्‍छा कार्य कर रहे है मै आपके इस प्रयास से बहुत ज्‍यादा खुश हू और बहुत ज्‍यादा प्रभावित हू कि मेरे देश मे अभी भी आप जैसे अध्‍यापक हैा

Subscribe

Admission Notice

Admission Announcement
Discount offers available

Contact Us

Saurabh Shukla

Mobile: +91-9893194395
email: sshukla_manit@yahoo.com

Facebook Page: https://www.facebook.com/mysirg

Follow Me on Facebook and Twitter:

Follow @sshukla_manit

Website: www.mysirg.com

Copyright © 2025 MySirG.Com. Powered by WordPress. Theme: Spacious by ThemeGrill.
  • Mysirg Testimonials
  • About
  • About mysirg
  • About Teacher
  • Join Classroom
  • Terms and Conditions
  • Pricing
  • Refund
  • Privacy
  • Contact