Coding with Sudhir

Welcome to CodingWithSudhir ! Here, you'll find engaging tutorials and insights into the world of programming, with a focus on Java and various project-based learning experiences. Whether you’re a beginner or looking to enhance your skills, I cover a range of topics to help you succeed.

If you’re interested in creating a project or have any questions, feel free to message me at codingwithsudhir@gmail.com. Thank you for joining me on this coding journey! Don’t forget to subscribe and hit the notification bell to stay updated on the latest content.


Coding with Sudhir

🚨Online Ethical Hacking Workshop – Registration Open

SSSAM Academy, Gurugram is organizing a 4-Day Online Ethical Hacking & Cybersecurity Workshop for students interested in cybersecurity.

πŸ“… Workshop Start Date: 16 March 2026
πŸ“† Duration: 4 Days
⏰ Time: 8:30 PM (Evening)
πŸ’» Mode: Online (Live Classes)

πŸ“ Registration Form:
πŸ‘‰ docs.google.com/forms/d/e/1FAIpQLScHrGgst34pll3UYC…

πŸ‘₯ Join WhatsApp Group:
πŸ‘‰ chat.whatsapp.com/BbsogBEGMSvGnYuw5JMhOW?mode=gi_t

🌐 Website:
sssamacademy.com/

All workshop updates and live class links will be shared in the WhatsApp group.

πŸ“ž Contact:
+91 9217031899
+91 9518447689

SSSAM Academy
Old DLF Colony, Sector 14, Gurugram

3 weeks ago (edited) | [YT] | 6

Coding with Sudhir

India Lifts the T20 World Cup Trophy πŸ†πŸ”₯ | Historic Victory

4 weeks ago | [YT] | 22

Coding with Sudhir

What is the output of this code?

8 months ago (edited) | [YT] | 3

Coding with Sudhir

What is the output of the following code?

#include <stdio.h>

int main() {
int arr[3] = {10, 20, 30};
printf("%d\n", arr[-1]);
return 0;
}

9 months ago | [YT] | 2

Coding with Sudhir

What will happen when you execute the following C code?

#include <stdio.h>

int main() {
int arr[5];
arr[10] = 100;
printf("%d\n", arr[10]);
return 0;
}

9 months ago | [YT] | 3