Category: C

C dili ile kodlamayı ögrenin

Sunday February 11th, 2018

C- Switch Case (Calculator)

In C language , There are some term  we use when we define the case using with the Switch Case construction. When we press the these terms , Cases will be happen in the defined case. Now , I will make a program, program will be get user for library. When the user press + , that user will enter the library and when the user […]

Friday February 9th, 2018

C – Else-If , Continue , Break Expressions

In this essay , I will talk about the else-if , continue and break expressions. These expressions helps us to write easily code. Else-if help us the add another condition to if – else. Like i will make program which is about the letter grade. If your note bigger or equal to 90 and smaller than 100 , your letter grade AA. In here , […]

Wednesday February 7th, 2018

C – Loops 2

In previous essay , I used if – else and while loops when make a program. In this essay , I will use do-while and for loops. Do – while loop is different type of while loops. You can see the previous essay in here. Firstly , I will make a program , using with the do – while loop . In this program, Program […]

Saturday February 3rd, 2018

C – Arithmetic Operations

Writing code with C language, we use some arithmetical terms. Thanks to these terms , we can do easily arithmetical operations. In this essay , I will make program , using with the arithmetical terms. Some Arithmetic terms and their meanings ; To increase the count by 1: number++ , ++number , number+=1 To sum the number with another number: number+=5 , number = number […]

Friday February 2nd, 2018

Loops With C Programming Language 1

Today , I will make 2 program, using the loops. You can run the these programs using Dev C++ or Microsoft Visual Studio . If you dont have these programs you should look previous essay. In the first program, Program will get two number from the user and program will compare the numbers which one is bigger. I will make this program using if – […]

Thursday January 25th, 2018

Starting The Coding With C Language

C language is very huge programming language you can do almost everything. If we want to give example what we can do with C language , we can create mobile apps , games even you can code  robot so C language has a lots of features. In university , They teach C language first , reason of this making understandable algorithms , I mean C […]