Skip to main content

Posts

Project in C Snake Game

Recent posts

Project in C Tic Tac Toe Game

  Tic Tac Toe Game Development using C While making a Tic Tac Toe game using C language, it is important to make use of arrays. The Xs and Os are kept in different arrays, and they are passed between several functions in the code to keep track of how the game goes. With the code here you can play the game choosing either X or O against the computer. This Tic Tac Toe C game is such that you will have to input a numerical character, from 1 to 9, to select a position for X or O into the space you want. For example: if you are playing with O and you input 2, the O will go to first row – second column. If you want to place O in third row – first column, you have to enter 7. And, it is similar for the other positions.

C Structures

  C Structures 1)make a structure for employee    name    email    occupation Ask the user to enter these details for 3 employees then ask the user whose details he wants to display (1 or 2 or 3) depending on his choice display that employee details.

C pointers

  C pointers theory C pointers practice 1)Adding two numbers using pointer 2)multiplying 3 numbers using pointers 3)Program to Swap Elements Using Call by Reference(using pointer) 4)Access the elements of array using pointer and display the largest number      

C Functions

  User Defined Function User defined Function return practice 1)C Program to Display Prime Numbers Between Intervals Using Function 2)C Program to Check Prime or Armstrong Number Using User-defined Function 3)C Program to Find the Sum of Natural Numbers using Recursion      

C Arrays

  Array 2D Array practice 1)c program to find the sum of numbers in an array 2)C Program to Calculate Average Using Arrays 3)C Program to Add Two Matrix Using Multi-dimensional Arrays 4)C Program to Find Largest Element of an Array 5)C Program to Sort the Array in an Ascending Order 6)program to reverse a string    

C Control Statements

for Loop while loop do...while loop practice 1)print Fibonacci  series 2)check whether given number is palindrome 3)c program to reverse a number