top of page
Search


Write a Program to find the LCM of a given number in C.
Code: #include <stdio.h> int main() { int a, b, x, y, t, gcd, lcm; printf("Enter two integers\n"); scanf("%d%d", &x, &y); a = x; b = y;...

The Tech Platform
Jun 29, 2021


Write a Program to Find the Area of Triangle in C
Code: #include<stdio.h> int main() { int h, b; float area; printf("\nEnter the height of the Triangle: "); scanf("%d", &h);...

The Tech Platform
Jun 26, 2021


Write a program to find the Area, Diameter and Circumference of Circle in PHP
Code: <?php $r = 4; $d = NULL; $c = NULL; $a = NULL; // $r = radius // $d = diameter // $c = circumference // $a = area /* formulas for...

The Tech Platform
Jun 25, 2021


Text Shadow in CSS
The Text Shadow property in CSS adds shadows to the text. This CSS property is basically used for the decoration purpose. Each Shadow is...

The Tech Platform
Jun 22, 2021


What are CSS Selectors? What are different types of selectors in CSS with Example.
CSS selectors are used to select the content you want to style. Selectors are the part of CSS rule set. CSS selectors select HTML...

The Tech Platform
Jun 22, 2021


Write a Program to find the Minimum and Maximum Number from the list using PHP.
Code: <!DOCTYPE html> <html> <body> <?php echo("Minimum Value from (42, 243, 532, 200, -80, -35)= " . min(42, 243, 532, 200, -80, -35) ....

The Tech Platform
Jun 21, 2021


A Brief Introduction About CSS Border Style
CSS border is used to set the border on Elements like Image, Paragraph etc. CSS border properties are used to specify the style, color...

The Tech Platform
Jun 20, 2021


Create a Image as a Link in HTML.
Code: <!DOCTYPE html> <html> <body> <h2>Image as a Link</h2> <p>Click on the Image to see the results:</p> <a...

The Tech Platform
Jun 18, 2021


Change the Shape of the Image using CSS
In CSS, Use the border-radius property to create rounded images: You can Change the shape of the image using pixels or using percentage...

The Tech Platform
Jun 17, 2021


Write a Program to Print Today's Date in Python
Code: Without strftime() method from datetime import date today = date.today() print("Today's date:", today) We use the strftime()...

The Tech Platform
Jun 14, 2021
bottom of page
