C program for Snake game

C Programming Tutorial

Snake Game is mini project  in a C language. It is console application without graphic library that’s why it is more interesting. This game is perfect without any error and better user interface. It is complied in code block using c language. Here goes a source code you can copy and compiled it in code block. … Read more

How Do I Choose the Best Internet Service Provider?

What You Should Consider Before Choosing an ISP The most important feature, naturally, is availability. It’s no use trying to get Verizon FiOS (or, better yet, 100-times-faster-than-other-broadband Google Fiber) if the company doesn’t service your area. To find out what’s available to you, head to http://dslreports.com/search and enter your zip code. DSL Reports breaks down … Read more

C Program to find prime number

C Programming Tutorial

What is prime number? Definition of prime number A number is considered as prime number when it satisfies the below conditions.It should be whole number It should be greater than 1 It should have only 2 factors. They are, 1 and the number itself. For Example: 2, 3, 5, 7, 11, 13, 17, 19, 23, … Read more

mysqld — The MySQL Server

MySQL Cluster

mysqld, also known as MySQL Server, is the main program that does most of the work in a MySQL installation. mysqld, is MySQL server daemon program which runs quietly in background on MySQL Database Server. MySQL Server manages access to the MySQL data directory that contains databases and tables. The data directory is also the … Read more

Rename table in MYSQL

MySQL Cluster

  To rename a table in MySQL you just need to run a command named RENAME TABLE, the syntax is very easy to use. RENAME TABLE table1 TO table2; The RENAME TABLE command will rename the table atomically, which means your table will be locked during the command. You can also rename more than one … Read more

ITT Registration Procedure

Please see the student mannual on the http://icaionlineregistration.org/ for more details. Also Online registraiton portal is http://www.icaionlineregistration.org/index.html http://icaionlineregistration.org/usermanuals/student.pdf    

Shell Script to copy files in a folder

A shell script to find all the files in the given path recursively and then copying them in the target folder #!/bin/sh ################################################################# # A shell script to go through a directory recursively and copy # ################################################################# # this is full path to the folder from where the files need to be copied. path=”/home/Music/” # … Read more