I Made Krisna's Times My Way to Write the Times

17Oct/110

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.

*
**
***
****

16Oct/110

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).