Posts

Showing posts from May, 2021

5 Awesome Types of Blog

Image
  Unlocking the Spectrum of Exceptional Blogging: 5 Mesmerizing Blog Types Problem and Solutions Unveiled: Delve into the intriguing realm of problem-solving content. Ever pondered why news stations consistently highlight issues? Leverage this curiosity by spotlighting a problem and offering your ingenious solutions. Whether it's a tech glitch, lifestyle woe, or a common concern, your blog can become a beacon of solutions in a sea of problems. Laughter Unleashed: Funny Posts Beyond Boundaries Unleash your creative side with humor-infused content. Recall the post about "20 reasons to stay away from North Carolina"? Imagine turning negatives into positives, injecting wit and charm into your blog. A departure from the norm, funny posts are your ticket to creating engaging and lighthearted content that resonates with diverse audiences. Dive into parody, irony, or outright hilarity — let your readers relish the unexpected joy. Quiz M...

Write hello program using different programming languages

Image
✏📃 Multi-Language Greetings: A Code Showcase in C, C++, Java, Python, and PHP 👇 C Programming Language (C) 👉 c # include <stdio.h> int main () { printf ( "Hello C language" ); return 0 ; } Save this code as "hello.c". The extension ".c" signifies C programming. Note: "return 0" indicates successful execution, while "return 1" denotes unsuccessful execution. Output of this program: Hello C language C++ Programming Language (C++) 👉 cpp # include <iostream.h> # include <conio.h> int main () { cout << "Hello C++ language" ; return 0 ; } Save as "hello.cpp". The ".cpp" extension is for C++ programming. Output: Hello C++ language Java Programming Language (JAVA) 👉 java class main { public static void main (String args[]) { System.out.println( "Hello JAVA" ); } } Save as "hello.java". The ".java" extensio...