This file contains hidden or 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
gist denemesi |
This file contains hidden or 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 <string.h> | |
#include <stdlib.h> | |
#define MAXLINE 1024 | |
char * KOMUT[MAXLINE]; | |
int wspace(char c) { | |
return c == ' ' || c == '\n'; | |
} |
This file contains hidden or 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 <ctype.h> | |
int main() | |
{ | |
char *s,*p; | |
int i; | |
s="merhaba dunya"; |
This file contains hidden or 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 <ctype.h> | |
int main() | |
{ | |
char *s; | |
float a; | |
s="12.34"; | |
a=atof(s); |
This file contains hidden or 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 <ctype.h> | |
char *ayikla(char *dizgi) | |
{ | |
int i,k=0; | |
char *b; | |
b=malloc(strlen(dizgi)); |
This file contains hidden or 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 <ctype.h> | |
int main() | |
{ | |
char *s,*p; | |
int i,k=0; | |
s="+,- 1234"; | |
p=malloc(strlen(s)); |
This file contains hidden or 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
<html> | |
<body> | |
<table border=2> | |
<tr> | |
<td rowspan=2> telefon</td> | |
<td>0900 000 0000</td> | |
<td>0900 000 0000</td> | |
</tr> | |
<tr> | |
<td>0900 000 0000</td> |
This file contains hidden or 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
<html> | |
<body> | |
<h2> Denemeler</h2> | |
<ol> | |
<li>coffee</li> | |
<li>coffee</li> | |
<li>coffee</li> | |
<ol> | |
<li>hmmm</li> | |
<li>hmmm</li> |
This file contains hidden or 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
process; ikili kodun bellekte çalıştırılabilir hale gelmiş haline denir. | |
scheduling; zaman tahsili | |
dispatch; scheduling bittiğinde başka bir processe geç | |
nice; işletim sistemine oncelikli görev belirleme | |
scheduler dispatch; kuyruga geri yolla yenisini al |
This file contains hidden or 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
%Simple analog diaplay | |
figure(2) | |
%define the input | |
adaptor = 'winsound'; | |
id = 0; | |
chan = 1; | |
% Analog input object Configuration. |
OlderNewer