c-course/ChangeLog

37 lines
1.3 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

2024-02-03 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/local-variable-global-variable_scope.c (main): local and global variable values are printed
2024-02-02 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/local-variable-scope.c: local variable and global variable explained
2024-02-01 Mert Gör <mertgor@masscollabs.xyz>
* c-basic/scope.c: scope and variables explained
* c-basic/scanf-hex.c: Scanf accepts the int variable as hex if we pass %x
* c-basic/scanf-float-double.c: Scanf reads float as %f and double %lf
* c-basic/scanf-example.c: gettıng input source via scancf
* c-basic/scanf-example-two-variables.c: scanf example with two variables
* c-basic/scanf-a-b-c-double.c: set a,b,c double variables, read a and b with scanf function and then pass addition of a and b to c variable and print c variable
* c-basic/print_variables.c: print variables with different ways
* c-basic/on-return.c: explaining return value
* c-basic/on-return.2.c: explaining return value : "without return same result exists"
* c-basic/on-return-void.c: if we pass void then it means function has no return value, and those functions are void functions
* c-basic/initialization-variable.c: Swap Algorithm with initialized variables example
* c-basic/helloworld.c: hello world example added
* c-basic/foo.c: foo example added