SVG Polygon –

SVG Polygon – <polygon> The <polygon> element is used to create a graphic that contains at least three sides. Polygons are made of straight lines, and the shape is “closed” (all the lines connect up). Polygon comes from Greek. “Poly” means “many” and “gon” means “angle”. Example 1: <!DOCTYPE html> <html> <body> <svg height=”210″ width=”500″> … Read more

Knowledge is power. Information is liberating

Knowledge is power. Information is liberating. Education is the premise of progress, in every society, in every family. – Kofi Annan      

Type Casting in c

C Programming Tutorial

Type Casting in c Type casting means changing a variable of one data type into another. The compiler will automatically change one type of data into another if it makes sense. For instance, if you assign an integer value to a floating-point variable, the compiler will convert the int to a float. Casting allows you to … Read more