deleted source code

This commit is contained in:
Mert Gör 🇹🇷 2024-08-25 11:07:20 +03:00
parent 3420937d57
commit dd2465f2e2
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
8 changed files with 59 additions and 125 deletions

112
c-basic/.gitignore vendored
View File

@ -1,56 +1,3 @@
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
# Created by https://www.toptal.com/developers/gitignore/api/emacs
# Edit at https://www.toptal.com/developers/gitignore?templates=emacs
@ -106,3 +53,62 @@ flycheck_*.el
# End of https://www.toptal.com/developers/gitignore/api/emacs
# Created by https://www.toptal.com/developers/gitignore/api/c
# Edit at https://www.toptal.com/developers/gitignore?templates=c
### C ###
# Prerequisites
*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
# End of https://www.toptal.com/developers/gitignore/api/c

View File

@ -1,6 +0,0 @@
#include <stdio.h>
int main(){
printf("example hello world\n");
return 0;
}

View File

@ -1,9 +0,0 @@
#include <stdio.h>
foo()
{
printf("I am foo\n");
}
main()
{
foo();
}

View File

@ -1,10 +0,0 @@
#include <stdio.h>
int foo()
{
printf("I am foo\n");
}
int main()
{
foo();
}

View File

@ -1,12 +0,0 @@
#include <stdio.h>
int main()
{
int a;
printf("enter a number:");
scanf("%d", &a);
printf("Your number is : %d\n", a);
return 0;
}

View File

@ -1,15 +0,0 @@
#include <stdio.h>
int main()
{
int a;
int b;
printf("enter number a :");
scanf("%d", &a);
printf("a is %d\n", a);
printf("enter number b :");
scanf("%d", &b);
printf("b is %d\n",b);
return 0;
}

View File

@ -1,10 +0,0 @@
#include <stdio.h>
int main()
{
int a = 10, b = 20;
printf("a = %d, b = %d\n", a, b);
printf("a = %d, b = %d\n", b, a);
printf("%d%d\n", a, b);
}

View File

@ -1,10 +0,0 @@
#include <stdio.h>
int main()
{
int a = 10, b = 20, c = 30;
printf("a = %d, b = %d\n", a, b);
printf("a = %d, b = %d\n", c, a);
printf("%d%d\n", a, b);
}