Hello guys welcome back on my blog wkwk…. Today I want to tell you about my story when first time i met my soul mate in senior high school. Enjoy my story 😁. The First Man Standing August 2013, for the twice time I made a new story of my school years. I just graduate from my junior high school , Alhamdulillah I can continued my studied to my favorite senior high school in Bekasi. Need extra struggle and perseverance so that I could get into this beloved school. In the morning of my first day in my school, it was a freak moment and very busy morning after my long holiday. I had orientation day until next 3 days, I’m prepared as well for that to make me comfort and enjoy my orientation. Cloth and equipment that requested by the orientation committee so made me feel uncomfortable and annoyed. I went to school with my dad using motorcycle, I feel embarrassed because everyone looking at me. When I arrived in the front...
Popular posts from this blog
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...
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) ...