Simple HTTP Server With Java Sockets

In this video we will learn how to write a Simple HTTP Server With Java Sockets. https://youtu.be/lCNUsi4Qfuw?si=ixIzhr6e4YSOnBG3 /* Youtube Channel: Asim Code https://www.youtube.com/watch?v=lCNUsi4Qfuw&ab_channel=AsimCode */ import java.net.*; import java.io.*; public class…

Typedef in C

The typedef declaration. https://youtu.be/ydy3JzlXdkc #include <stdio.h> typedef int MyInt; typedef char* MyString; int main() { MyInt i = 150; MyString ms = "Hello World"; printf("The value is = %d\n",i); printf("The…