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

What is the output of this code?

6 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;
}

6 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;
}

6 months ago | [YT] | 3

Coding with Sudhir

6 months ago | [YT] | 10

Coding with Sudhir

What is the purpose of the <meta> tag in an HTML document?

9 months ago | [YT] | 3

Coding with Sudhir

What is the correct HTML tag for inserting an image?

9 months ago | [YT] | 2

Coding with Sudhir

10 months ago | [YT] | 15