Skip to content

Instantly share code, notes, and snippets.

View iKlotho's full-sized avatar
🏠
Working from home

Umut Kahriman iKlotho

🏠
Working from home
  • İstanbul, Turkey
View GitHub Profile
@iKlotho
iKlotho / main.cpp
Last active November 7, 2017 11:01
C Language Translate Console Program
/*++
Module Name:
main.c
Vers : v1.1
--*/
#define _CRT_SECURE_NO_WARNINGS
@iKlotho
iKlotho / main
Last active November 7, 2017 11:02
C Language Translate Console Program
/*++
Module Name:
main.c
Vers : v1
--*/
#define _CRT_SECURE_NO_WARNINGS
void bilgilerimi_goruntule()
{
system("cls");
system("cls");
FILE *fileptr1;
char ch;
//open file in read mode
fopen_s(&fileptr1, "user_information.dat", "r");
ch = getc(fileptr1);
while (ch != '\n')
void bilgilerimi_goruntule()
{
system("cls");
system("cls");
FILE *fileptr1;
char ch;
//open file in read mode
fopen_s(&fileptr1, "user_information.dat", "r");
ch = getc(fileptr1);
while (ch != '\n')
@iKlotho
iKlotho / Read From File Line By Line
Created December 24, 2014 17:25
Read From File Line By Line
void bilgilerimi_goruntule()
{
system("cls");
system("cls");
FILE *fileptr1;
char ch;
//open file in read mode
fopen_s(&fileptr1, "user_information.dat", "r");
ch = getc(fileptr1);
while (ch != '\n')
@iKlotho
iKlotho / çekbw
Last active August 29, 2015 14:12
void kullanici_ekle()
{
system("cls");
first_memur();
first_kullanici();
user_information();
Sleep(3000);
system("cls");
struct kullanici users;