c programlama dersleri etiketindeki yazılar
C / C++ »

Switch is a selection structure just like if, if/else. It is not a repetition structure. Important points of using switch:
? We use switch while checking one variable with different outcomes with more than one value.
? It should be equality. Comparison (< or >) won’t work with switch.
? In switch, only integer can be used, not other types. But character is also acceptable, because as you know, character has also an integer value which is ASCII code. So we can say,
Devamını Oku »C / C++ »

After a long time, i have started to continue this course. Because i got some mails which want me to complete this course. Even if there is someone who benefits this course, it is enough for me to be willing to continue. Let’s continue then;)
Do/While
Let’s try one example with 3 different loops that we have learned before. Also this example will remind us how to use loops.
(1) int x=1;
while(x<=10){ ...
Devamını Oku »C / C++ »

Pre-increment and Post-increment
Pre-increment changes the value of the variable, and then makes the calculation or processes which should be done. (It?s written like this: ?++x ?)
Post-increment makes the processes and then changes the value of the variable. (It?s written like this: ?++x ?)
Decrement versions of these are the same. (?–x? or? x–?)
int x=3;
printf(?%d?, ++x); //it will change the value of x to 4 and then print 4…
Devamını Oku »C / C++ »

Let?s start with an example to remember previous course.
Write a program that enters a final grade of student and prints if the student passed or failed. (40 and above passed)
#include
int main(){
int grade;
printf(?Enter the grade: ?);
scanf(?%d?,&grade);
(continues)…
Devamını Oku »C / C++ »

They are used to compare some values and operate according to result.
The result can be true or false.
* If the condition is true, it operates everything in if statement.
* If the condition is false, it skips whole if statements and continue.
We can build conditional statements in two forms:
Devamını Oku »C / C++ »

Let’s continue with calculation in C!
First of all, we should know about order of mathematical operations. Basicly, we can say the order is like that:
1) ( ) paranthesis
2) * (product), / (division) , % (remainder of division)
3) + (summation), – (difference)
If operations are in the same order ( like + and – ), than the priority belongs to one that comes first.
Example;
int x= 5 * 4 / 2 + ( 4 + 2 );
If we print, it will find x …
C / C++ »

Let’s start!
To write and execute a program:
Edit : writes codes of the program on a suitable platform
It creates a file which has “cpp” extension. For example: “First.cpp”
Preprocess : adds header files and then checks for errors before compiling
Compile :
checks for syntax errors
converts program code into object code(machine language code)
At this point, “First.cpp” becomes “First.obj”
Link : makes object code and files in preprocessing work together
Load : loads program into memory (CPU will take instructions)
Execute : runs every line in memory, but …
C / C++ »

Let’s talk about variables and usage of conversion specifiers now.
What is a variable?
* It’s a location in memory
* It’s used to store input and results. (Results can be output as well)
* It has a name and a data type
* We specify the location in memory by declaring
Three things that we can do with variables are declaration, initialization and using it.If you use a variable without declaring it, it will give you an error “undeclared identifiers”.
Devamını Oku »C / C++ »

Let’s continue to refresh our minds:
The first function that we should know is printf function..
This function is used for output. The usage of this function is so simple.
Whatever you want to write as output on the screen, you can put this between quotation marks (” “)
printf(” (Things that you want to see on the screen will be here) “);
Devamını Oku »C / C++ »

Let’s start with memories. There are two kinds of memory:
Temporary Memory: Also called “Primary Memory“. When we say temporary memory, RAM comes to our minds. It contains little space, but it is expensive.
Permanent Memory: Also called “Secondary Memory“.You know this is related to Hard Disc. It needs more space, but it is cheaper than temporary memory.
This theoratical information is enough for now. Let’s make a quick start to programming. The basic terms that a C Program should have, …
Devamını Oku »