Posts

Showing posts from June, 2016

Find LCM of two numbers in C Programming.Easy Ways!

Image
To find out LCM of two numbers first we need to know about  what is LCM ? It means least common multiple  (also called as  lowest common multiple  or  smallest common multiple ) of two integer numbers. Example What is the LCM of 4 and 6? Multiples of 4 are: 4, 8, 12, 16, 20, 24, 28, 32, 36, 40, 44, 48, 52, 56, 60, 64, 68, 72, 76, ... and the multiples of 6 are: 6, 12, 18, 24, 30, 36, 42, 48, 54, 60, 66, 72, ... Common multiples  of 4 and 6 are simply the numbers that are in both lists: 12, 24, 36, 48, 60, 72, .... So, from this list of the first few common multiples of the numbers 4 and 6, their  least common multiple  is 12.               ---From wikipedia Downlaod the C file from google drive to understand the programm. See you guys next time. 

A sample HTML form!

Image
Today I won't go in any discussion about HTML or it's tags.Because I'm going to share with you guys a very simple HTML form. Now first of all what is a HTML form? HTML forms are used to collect user input A simple HTML Form Download HTML file here : Google drive link Download CSS file here : Google drive link

CSS3 Basics!-part3

Image
Cascading Style Sheets ( CSS ) are a stylesheet language used to describe the presentation of a document written in HTML or XML (including XML dialects like SVG or XHTML). Long time no see!Here's our third tutorial about CSS3 .Enjoy and learn! Gradients are typically one color that fades into another, but in CSS you can control every aspect of how that happens, from the direction to the colors (as many as you want) to where those color changes happen. Let's go through it all. Gradients are background-image While declaring the a solid color uses background-color property in CSS, gradients use background-image . This comes in useful in a few ways which we'll get into later. The shorthand background property will know what you mean if you declare one or the other. .gradient { /* can be treated like a fallback */ background-color: red; /* will be "on top", if browser supports it */ background-image: linear-gradient(red, orange); /* the