deleted source code
This commit is contained in:
		
							
								
								
									
										112
									
								
								c-basic/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										112
									
								
								c-basic/.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -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
 | 
			
		||||
 
 | 
			
		||||
@@ -1,6 +0,0 @@
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
 | 
			
		||||
int main(){
 | 
			
		||||
  printf("example hello world\n");
 | 
			
		||||
  return 0;
 | 
			
		||||
}
 | 
			
		||||
@@ -1,9 +0,0 @@
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
foo()
 | 
			
		||||
{
 | 
			
		||||
printf("I am foo\n");
 | 
			
		||||
}
 | 
			
		||||
main()
 | 
			
		||||
{
 | 
			
		||||
foo();
 | 
			
		||||
}
 | 
			
		||||
@@ -1,10 +0,0 @@
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
 | 
			
		||||
int foo()
 | 
			
		||||
{
 | 
			
		||||
  printf("I am foo\n");
 | 
			
		||||
}
 | 
			
		||||
int main()
 | 
			
		||||
{
 | 
			
		||||
  foo();
 | 
			
		||||
}
 | 
			
		||||
@@ -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;
 | 
			
		||||
}
 | 
			
		||||
@@ -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;
 | 
			
		||||
}
 | 
			
		||||
@@ -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);
 | 
			
		||||
}
 | 
			
		||||
@@ -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);
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user