Prathmesh Yelne has Published 381 Answers

How to Calculate Area of Equilatral Triangle using C Language

Updated on 12-Dec-2021 9:59:37

#include<stdio.h> #include<math.h> int main() { int side; float area, r_4; r_4 = sqrt(3) / 4; printf("\nEnter the Length of Side : "); scanf("%d", &side); area = r_4 * side * side; printf("\nArea of Equilateral Triangle : %f", area); return (0); } Output : Enter the Length of Side : 5 Area of Equilateral Triangle : 10.82 Properties of Equilateral Triangle : Equilateral triangle is a triangle in which all three sides a... Read More

How to print hello world using C Language

Updated on 12-Dec-2021 9:39:30

In this example, you will learn to print "Hello, World!" on the screen in C programming. #include <stdio.h> int main() { // printf() displays the string inside quotation printf("Hello, World!"); return 0; } Output : Hello, World! ... Read More

How to Check Whether Number is Perfect Or Not using C

Updated on 04-Apr-2023 8:23:19

C Program to Check Whether Number is Perfect Or Not Hello there, in this tutorial we will learn to check whether number is perfect or not using c programming ? Also Use : Perfect Number Checker Tool What Is Perfect Number : A perfect number is a positive integer that is equal to the sum of its positive divisors, excluding the number itself. #include <stdio.h> int main() { int num, i = 1, sum = 0; printf("Enter a number: "); scanf("%d", &num); while (i < num) { i... Read More

Slicing Design Newsletter Subcribe Modal

Updated on 09-Dec-2021 12:23:21

Hello, in this tutorials we are going to create Slicing Design Newsletter Subcribe Modal using HTML & CSS. in the last tutorial we are Build React Login & Sign Up UI Template with Bootstrap 5. Firstly you have to create index.html file to you folder. and you have to copy paste below to you your index.html file. HTML <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Slicing Design Newsletter Subcribe Modal</title> <lin... Read More

Build React Login & Sign Up UI Template with Bootstrap 5

Updated on 29-Nov-2021 19:04:28

Build React Login & Sign Up UI Template Today, In this tutorials we are going to create a fantastic React login and sign up user interface template using Bootstrap 5. This login & sign up UI template will surely help you in building simple react auth system. Access FREE COURSE : PHP FREE TUTORIALS LIBRARY Login system typically allows an individual us to gain access in any software system securely. Sign up is the process which enables a particular user to register in any web and mobile a... Read More

Best Login Form or Page using HTML & CSS With Source Code

Updated on 28-Nov-2021 20:04:57

Hello, Today in this blog I'm going to create an Animated Login Form by using HTML & CSS only. In my earlier blog, I have Shared How To Create Animated Panda Login Page using HTML & JS now it's time to design a new login form with social media buttons. What should a login page have? There are many things that we can add to the login form, some of the important fields I have added to this best login form using HTML are given below: Username field. Email field. Phone number fiel... Read More

How To Create Animated Panda Login Page using HTML & JS

Updated on 26-Nov-2021 20:42:24

In this tutorial, You will be learn how to create an animated panda login page using only HTML 5 and CSS3 and Javascript Programming Language. In this tutorials, I have added step by step code as shown as follows. so you can implement the animated login page using HTML, CSS & JS . GET PAID TOOLS FOR FREE : Best Online Tools - Codegyan First you have to create the index.html file and add the following html code. <!DOCTYPE html> <html lang="en"> <head> <meta charse... Read More

How To Install WordPress Manually in 2022

Updated on 22-Nov-2021 20:38:49

Generally, there are 2 ways that to put in WordPress manually or with the assistance of software. Install WordPress Using Manually If you like to install WordPress manually. you'll use this technique to make an internet site for everybody to envision on the web or create a area for development. Either way, putting in WordPress manually isn’t as tough as several would possibly think. ENROLL TO FREE COURSE : PHP FREE TUTORIAL LIBRARY WordPress manual installation. It solely takes a number of mom... Read More

Top 10 WordPress Magazine Premium Themes in 2022

Updated on 21-Nov-2021 12:25:15

Magazine style layouts theme are getting a lot of and more popular website builders. Undecided what a magazine theme is? Don’t worry, we are aiming to cowl it together. Let’s take a glance at a number of the simplest magazine themes for WordPress. Enroll To Free Course : Free PHP Tutorials Library Why Need a WordPress Magazine Theme? If you're beginning to build a web site with WordPress, you'll have plenty of various selections once it involves best magazine wordpress themes. However, if y... Read More

Which is default HTML5 skeleton ?

Updated on 18-Nov-2021 9:48:31

An HTML5 skeleton could look like this: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>THIS IS SIMPLE HTML5 SKELETON</title> </head> <body> </body> </html> (Note that this is not the most minimal HTML5 document, so many parts are optional.)... Read More

Advertisements

ads