Posts

Showing posts from September, 2016
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 ) ...