Posts

Image
How to install Ultimate++ And Make A Program From U++ Hello Guys!😎 welcome back on my blog!🐆. Today i want to tell you how to install Ultimate++ in GUI and make a button and count the click with GUI. Same like before... first let me tell you the definition of GUI. GUI           GUI (Graphical User Interface) is a graphical display that contains the tools or components that enable users to perform interactive work.  GUI created for the user to interact with the computer hardware and ease of operating a system (user friendly). okey,now let's start install the Ultimate++ 😎 How To Install Ultimate++ Now, go to  http://ultimatepp.org/ and click download the ultimate++. Then, select your OS if you use Microsoft Windows you can  click download on the MS Windows Platform. Then, select the lastest update from U++  After that choose u++ with mingw compiler and download it! After the download...
Image
Make An Animation Using Canvas on HTML5          Hello Guys !😏 Long time no see! it's a long time not post anything on my blog… today I’m going to explain you about How to make animation using Canvas on HTML5! 😆. Before explain how to make An Animation using canvas, let me tell you short description about HTML5 and Canvas. Enjoy and learn!💪 HTML5          HTML5 is the 5 version of HTML (Hypertext Mark up Languange) with new elements, attributes, and behaviors. It's launched on 2014 after the previous version HTML 4.01 on 2001. HTML5 serves as a markup language for structuring and displaying the contents of the World Wide Web.  <canvas>          <canvas> element is Used to review Graphic, objects on the website that generally using javascript script.<Canvas> is only a syntax for a draw, and to paint it you must use a script and several methods for drawing lines, b...
Image
Programming basic syntax of Making Decision and L ooping          Hello Programmer! Today I want explain and show to you about some syntax in C programming language. Let’s start and Enjoy!  Making Decision          How to use making decision on programming? Making Decision used when you want to execute a syntax or select some statements to be executed base on outcome of condition (whether is true or false). In Making Decision on C there are: Ø If statement (if) Ø If else statement (if else) Ø Nested if else statement (if elseif else) Ø Switch case construct         Let me give you an example, this is the syntax when you want to make a if statement,if else statement, if elseif else statement and switch case.   Ø If statement: is used when you want to execute one condition is true Example: (Input) When you run the if statement will show this output: (Output) ...
Image
Introducing Compiler & IDE     Holla! Future Programmer! Have you know the differences between compiler and IDE? For the new programmer maybe it’s a rare thing did you hear it. Now, I want to explain to you about compiler and IDE let’s get started now! COMPILER       Compiler is a computer program that allows you to translate a computer program written in a particular programming language into programs written in other programming languages. The term compiler used for a computer program that translates programs written in high level programming language (such as Pascal, C ++, Java,COBOL,etc) into machine language, usually with Assembly language as intermediary.  Compiler take time to create a program can be executed by a computer, the program executed by the compiler is able to run faster than the programs produced by the interpreter, and also it is independent. IDE ( Integrated Development Enviroment ) ...