Counting Size of Struct in C
First, i didn't guarantee that this post will give a true answer for any problem because this conclusion just made by myself based on my observation on some codes. It's very welcome to give another opinions or answers to share more knowledge and better solution.
This post will discuss about how much a struct take a memory? because of structs is a user-defined data structures, it's size will be relative to the content that the struct stores. For beginning let's refresh our memory (brain) about two most-used primitive data types size.
- int (4 bytes / 32 bits)
- char (1 bytes / 8 bits)
Draw a “stdio” BL Right-Angled Triangle C Source Code
Hello again, i've posted about drawing a square shape before. Now we're move a step ahead, drawing a simple right-angled triangle. I give this post BL code which means "Bottom-Left" because we're gonna draw right-angled triangle with the '90' placed at bottom left of the triangle.
* ** *** ****
Draw a “stdio” Square Shape C Source Code
Working in a one of biggest electronics manufacturer in the world that didn't make my training comes to advanced level. I've learn again from the bottom. Of course the language used is native-C which the founder passed away recently...
One of the simplest thing is using looping for drawing some shapes and in this post it will be a square shapes. The easiest shape i think. What we nee d just a nested loop for drawing the rows (outer loop) and the cell or column (inner loop) which loop with the same number (square has same size for width/column and height/row).
Writing Object to XML using XmlSerializer C# Source Code
How to write an object to a file with XML format? There is a class from .NET System.Xml.Serialization.XmlSerializer which can help to completely serialize the objects from program to a XML formatted files.
Suppose that we want to save the data of a person which has attributes:
- Name
- Age
- Height
- Weight
And the Person class:
public class Person
{
public string name;
public int age;
public int height;
public int weight;
public Person() { }
public Person(string name, int age, int h, int w)
{
this.name = name;
this.age = age;
this.height = h;
this.weight = w;
}
}




