Monthly Archives: April 2015

Learning LOOPS in C

What is a LOOP ? A loop is simply a statement which can execute a set of defined statements repetitively. You can write any valid C statement within a loop and you can also set how many times to execute … Continue reading

Posted in C | Tagged | Leave a comment

C Programming Video Tutorials for Beginners | Variables in C with Example

#include <stdio.h> #include <conio.h> int main() { //datatype int age ; float weight ; char sex ; age = 37 ; weight = 75.8 ; sex = ‘M’ ; printf(“%d %f %c”,age, weight,sex ); getch() ; return 0 ; } … Continue reading

Posted in C | Tagged | Leave a comment

download C IDE

Please download IDE http://www.bloodshed.net/dev/devcpp.html Then, run the installation and here we go for first program of C. File -> New Source #include<stdio.h>  — header stdio stands for standard input output and .h stands for header file #include<conio.h> Every C program starts with … Continue reading

Posted in C | Tagged | Leave a comment

Constants, Variables and Keywords

A constant is an entity that doesnt change. Example Integer Constants – 28,102, 857 etc Real Constant – 25.024 and etc ( numbers with decimal points). Character constant – ‘a’, ‘A’,’z’, ‘=’, ‘9 An Variable is an entity that does … Continue reading

Posted in C | Tagged , | Leave a comment

Introduction.History, Why need study C

So let gets started. C language was developed by AT & T`s Bell. It was designed and written by a man called Dennis Ritchie. Then its comes to questions why i need study C ? Learning the basic language elements … Continue reading

Posted in C | Tagged , | Leave a comment

Connect to MySQL with PHP in XAMPP / Create a new database

Now i had installed succesfully Xampp in my machine. In this video tutorials , its using Notepad ++ for IDE. So , i will download it the same . This is the links to download notepad++ (http://notepad-plus-plus.org/download/v6.1.4.html). When i tried … Continue reading

Posted in PHP | Tagged | Leave a comment

Different Pack with Zap command in foxpro

Pack – Physically Delete Records Tagged For Deletion Pack <– permanently removes all records tagged for deletion. Zap – Delete All Records From Database  Zap <– permanently removes all records.

Posted in Foxpro | Tagged | Leave a comment

copy structure to – Create A New Database With The Same Structure

copy structure to – Create A New Database With The Same Structure Copy Structure To FileName <– create a database file, called FileName, that contains the same structure/layout as the current database. The new file has 0 records. Copy Structure … Continue reading

Posted in Foxpro | Tagged , | Leave a comment

Modify Structure – Alter The Database Layout

Modify Structure – Alter The Database Layout Modify Structure<– alter the database layout/structure. The modify structure command returns you to the file/creation program. You will have the opportunity to change the name of the fields, change the field datatypes, change … Continue reading

Posted in Foxpro | Tagged | Leave a comment

Moving the Read/Write Pointer

Moving the Read/Write Pointer GoTo Top <– move read/write pointer to first record.  Optional go top with ommited “to”. GoTo 1 <– move read/write pointer to first record. GoTo 5 <– move read/write pointer to record 5. GoTo Bottom <– … Continue reading

Posted in Foxpro | Tagged | Leave a comment