Skip to main content

Featured

Tic Tac Toe

Tic Tac Toe Tic Tac Toe is a simple, two-player strategy game played on a 3x3 grid. Players take turns marking a square with either an "X" or an "O", with the goal of being the first to align three of their marks in a row, column, or diagonal.  I have made a simple Tic Tac Toe game using html, css, javascript.  The game doesnot have much features. The game is created to be played by two peoples. It is just a simple game. The code of this game you get in my github page   Link of this game code is below: Tic Tac Toe Game Code /

Functions in Stdio.h header file in C

 The stdio.h header file stands for  Standard Input Output. Simply we can say that it provides us the function for input and output process.

Here are some of the functions in stdio.h

printf() 

to print the integer, character, string etc. on the output screen.

scanf()

It reads the character, string, integer etc from the keyboard.

getc()

It reads the character from the file.

putc()

It writes the character to the file.

fopen()

It opens the file and all file handling functions are defined in stdio.h header file.

fclose()

It closes the opened file.

remove()

It deletes the file.

fflush()

It flushes the file.

Comments

Popular Posts