PROGRAMMING

Learn here simple synatx to make your programming perfact

Tuesday, March 31, 2020

C++ Language

Print Hello World // Your First C++ Program #include <iostream> int main() { cout << "Hello World!"; return 0; } Output: Hello World! Let us look at the various parts of the above program - The C++ language defines several headers, which contain information that is either necessary or useful to your program. For this program, the header <iostream> is needed. The line using namespace std; tells the compiler to use...

C Language

Print Hello World #include<stdio.h> #include<conio.h> int main() { clrscr(); print("HELLO WORLD"); getch(); } Output: HELLO WORLD Let us look at the various parts of the above program - > #include<stdio.h> With this line of code we include a file called stdio.h. This file lets us use certain commands for input or output which we can use in our program. > int main() The int is what is called the return...

Monday, March 30, 2020

HTML Syntax

HTML Syntax Here HTML is Hyper Text Markup Language. <!DOCTYPE html> <html> <head> <title></title> </head> <body>   <h1>Syntaxhere</h1> </body> </html> ...