Arduino ile RGB led kontrolü
Arduino ile RGB led kontrolü
RGB led control with HC-06 Bluetooth Module. Fritzing circuit: Video: You can find source code in this link. ...
07:34 / Furkan Kaan IŞIK / 0 Comments
RGB led control with HC-06 Bluetooth Module. Fritzing circuit: Video: You can find source code in this link. ...
07:17 / Furkan Kaan IŞIK / 0 Comments
C ile amiral battı oyunu. Hocamızın örnek oyunuydu umarım kodları anlayabilirsiniz.. Amiral battı indirme linki ...
07:03 / Furkan Kaan IŞIK / 0 Comments
Hocamızın verdiği görsel ödevini sınıftan bir arkadaşımız snake ile yapmıştı. Karışık ve yorucu umarım anlayabilirsiniz. Source Code #include<graphics.h>#include<conio.h>#include<time.h>#include<stdio.h>#include <limits.h>#include <stdlib.h> int check = 3,mouse = 0,score = 8; void checker(int randx,int randy,int x,int y){ int temp1 = randx-x; int temp2 = randy-y; if(temp1 < 0) temp1 *= -1; if(temp2 < 0) temp2 *= -1; if(temp1 <= 8...
06:45 / Furkan Kaan IŞIK / 0 Comments
Bu kodda dosyalama yöntemi ile bir öğrenci defteri oluşturduk. Öğrenci, ders ve not bilgisi ekliye biliyoruz, listeleme ve silme işlemlerini yapıyoruz. Kod biraz uzun umarım anlayabilirsiniz.. Arayüz Source Cod #include <stdio.h>#include <stdlib.h> struct ogrenci{char ad[10];char soyad[10];char no[10];};struct ders{char ders[10];char derskodu[10];};struct Not{char ogrno[5];char dersno[10];char notekle[5];};void menu();int ogrenciekleme();int notekleme();int dersekleme();int listeleme();int ogrencisil();int derssil();void menu(){ printf("1.Ogrenci ekle\n"); printf("2.Ders ekle\n"); printf("3.Not ekle\n"); printf("4.Listeleme\n"); ...
05:01 / Furkan Kaan IŞIK / 0 Comments
Klasik bir c kodu girilen değerleri alfabetik olarak sıralama. Source Code: #include <stdio.h> #include <stdlib.h> #include <string.h> #define max 50 #define lim 5 void sirala(char *q[lim],int sayac); void listele(char *q[lim],int sayac); int main() { static char ad[lim][max]; char *p[lim]; int say=0; do { printf("Adinizi giriniz;"); gets(ad[say]); p[say]=ad[say]; say++; ...
04:50 / Furkan Kaan IŞIK / 0 Comments
#include <stdio.h> #include <time.h> int main() { struct tm* sys; time_t t; t=time(NULL); sys=localtime(&t); printf("Zaman %.2d:%.2d\n",sys->tm_hour,sys->tm_min); printf("Tarih %.2d/%.2d\n",sys->tm_mday,sys->tm_mon,sys->tm_year+1900); printf("Current local time and date: %s",ctime(&t)); return 0; } ...
04:39 / Furkan Kaan IŞIK / 0 Comments
C ile görsel hesap makinesi. Ara yüzü aşağıdaki gibidir. Source Code #include<stdio.h>#include<windows.h>int secim;void rengim(int renk){ HANDLE hStdout; hStdout = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleTextAttribute(hStdout, renk);}int topla(int sayi1 ,int sayi2){ return (sayi1+sayi2);}int cikar(int sayi1 ,int sayi2){ return (sayi1-sayi2);}int carp(int sayi1 ,int sayi2){ return (sayi1*sayi2);}int bol(int sayi1 ,int sayi2){ if(sayi2!=0) return (sayi1/sayi2);}void gotoxy(short x, short y){ HANDLE hConsoleOutput; COORD Cursor_Pos={x-1,y-1}; hConsoleOutput=GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleCursorPosition(hConsoleOutput,Cursor_Pos);}void cerceve(int x1,int x2,int y1,int y2){ int i,j; for(i=x1;i<=x2;i++) { gotoxy(i,y1);printf("%c",196); gotoxy(i,y2);printf("%c",196); } for(j=y1;j<=y2;j++) { gotoxy(x1,j);printf("%c",179); gotoxy(x2,j);printf("%c",179); } gotoxy(x1,y1);printf("%c",218); gotoxy(x2,y1);printf("%c",191); gotoxy(x2,y2);printf("%c",217); gotoxy(x1,y2);printf("%c",192);}void baslangic(){ int i,j; gotoxy(20,14);printf("HESAP MAKINASI YUKLENIYOR"); for(j=15;j<=50;j++) { gotoxy(j,16);printf("%c",196); gotoxy(j,18);printf("%c",196); } for(i=15;i<=50;i++) { rengim(4); gotoxy(i,17);printf("%c",177); Sleep(100); rengim(7); }}void menu(){ system("cls"); cerceve(1,15,1,15); rengim(4); gotoxy(2,2);printf("ISLEMLER\n"); gotoxy(2,3);printf("--------"); rengim(5); gotoxy(2,4);printf("1-TOPLAMA"); rengim(6); gotoxy(2,6);printf("2-CIKARMA"); rengim(3); gotoxy(2,8);printf("3-CARPMA"); rengim(8); gotoxy(2,10);printf("4-BOLME"); rengim(7); gotoxy(2,12);printf("Seciminiz:"); scanf("%d",&secim);}main(){ int say1,say2; baslangic(); Sleep(300); menu(); cerceve(25,60,1,20); gotoxy(30,2);printf("1.sayiyi gir:...
Necü-Bilgisayar Mühendisliği Büyüyünce hacker olcam
Created By Sora Templates & Blogger Templates