This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> //printf komutu için gerekli kütüphane. | |
#include <stdlib.h> //system("PAUSE"); için gerekli kütüphane. | |
int main(void) | |
{ | |
printf("Merhba Dunya!\n"); // (\n satır atlamaya yarıyor.) | |
printf("deneme1"); /* YORUM SATIRLARI */ | |
printf("Test 1\n"); | |
system("PAUSE"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main(void) | |
{ | |
int N,i=1,f=1; | |
printf("Kac faktoriyel hesaplancak -> "); scanf("%d",&N); | |
while (i<=N) | |
f*=i++; | |
printf("%d!=%d faktoriyel\n",N,f); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
//Dörtgen çizme yazılımı | |
int main(void) | |
{ | |
int x,y; //kordinat değişkenlerim | |
printf("X ekseni -> "); scanf("%d",&x); //X kordinatı | |
printf("Y ekseni -> "); scanf("%d",&y); //Y kordinatı | |
printf("x=%d, y=%d\n\n",x,y); //aldığımız değerler | |
int i,j; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
int main(void) | |
{ | |
char cumle[] = "Merhaba Dunya"; | |
int say=0; | |
int i; | |
for (i=0; cumle[i] != '\0';i++) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace Snake_2 | |
{ | |
class Program | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <math.h> | |
void Binary(void); | |
void Octal(void); | |
void Hexadecimal(void); | |
void BinaryDecimal(void); | |
void OctalDecimal(void); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {using, Disposable} from "using-statement"; | |
import {Mixin} from "ts-mixer"; | |
import {EventEmitter} from "events"; | |
class Walker { | |
walk() { | |
console.log("walking..."); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ncu -u && npm i && rm -rf node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"module": "commonjs", | |
"target": "ESNext", | |
"sourceMap": false, // default true | |
"outDir": "./js", | |
"rootDir": "./ts", | |
"moduleResolution": "node", | |
"removeComments": true, | |
"declaration": true // default false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Logs | |
logs | |
*.log | |
npm-debug.log* | |
yarn-debug.log* | |
yarn-error.log* | |
lerna-debug.log* | |
# Diagnostic reports (https://nodejs.org/api/report.html) | |
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
OlderNewer