Filing in C

Submitted by Muzammil Muneer on

Reading From a File

In this part you will learn: 1. C syntax 2. Filing 3. Reading from a file In this tutorial we will learn about filing in C. Filing is a very important tool in C. In this program we will read a file from our computer and display its content on the screen.

Structures in C

Submitted by Muzammil Muneer on

Structures in C

In this part you will learn: 1. C syntax 2. Structure variable 3. Structure declaration 4. Structure accessing 5. Showing output

What is a Structure?

Structure is a user-defined data type in C which allows you to combine different data types to store a particular type of record. Structure helps to construct a complex data type in a more meaningful way. Structure helps when you have to store a collection of data of many similar things or people etc. It is somewhat similar to an array.

Image Rotate Using CSS

Submitted by GeePee on
This project will teach you on how to rotate an image using CSS. No javascript code or jQuery, just pure CSS. In my example, I have a blade image with transparent background. With the use of @keyframes animation in css, the image rotate like a windmill. This is very easy to do with just a few lines of codes. Hope you learn from this.

Functions And Pointers in C Language

Submitted by Muzammil Muneer on

Functions and Pointers

In this part you will learn: 1. C syntax 2. Pointers 3. Pointers declaration 4. Function arguments as pointers 5. Showing output In this tutorial we will use pointers with functions. Using functions with pointers is same as using functions with any normal variable. The only difference comes in the parameter list and sometimes in the return type as well when we return a pointer or an address of a variable. Calculating Average Open Dev C++ then File > new > source file and start writing the code below.

Interactive Tracker Boxes #2 - CSS

Submitted by Yorkiebar on

Introduction:

This is the second part of my interactive tracker boxes in HTML, CSS, and jQuery. This part will be covering styling the classes of our elements using CSS3.

Box:

The box class will be the holder of the points/trackers where the user is able to hover their mouse over in order to get responsive information about appropriate content. For this, I am going to do a simple small box with white background, and black border...

Introduction to Pointers

Submitted by Muzammil Muneer on

Introduction to Pointers

In this part you will learn: 1. C syntax 2. Pointers 3. Pointers declaration 4. Showing output

What is a Pointer?

Whenever we declare variable our computer stores it in at a memory location in the memory. A unique address is assigned to every variable made by the user either its on run time or compile time. We use pointers to access those address whenever we want to and use the value that is stored on that particular address. Pointer is a special kind of variable. Pointers are designed to store the memory address i.e.