C Language Class 2 : A Simple C Program Hello World The first thing we must do is open a text editor. Windows users can use Notepad and UNIX/Linux users can use emacs or vi. Now type the following lines of code and then I will explain it. Make sure that you type it exactly as I have or else you will have problems. Also don’t be scared if you think it is too complicated because it is all very easy once you understand it. #include int main() { printf ( "Hello World\n" ); return 0; } #include This includes a file called stdio.h which lets us use certain commands. stdio is short for Standard Input/Output which means it has commands for input like reading from the keyboard and output like printing things on the screen. int main() int is what is called t...
Customize your android by Changing the names of the icons on your android home screen I f you had tried lots to customize look of your android then time to know one that you must not try till now. Changing name of icons of your home screen is now possible. And with this you can rename any icon according to your wish and all this with the trick that we are going to discuss right here. And in this you will be editing apps name with a cool app that will allow you to do this in your android. So have a look on complete guide discussed below to proceed. How To Change the Names of the Icons on Your Android Home Screen The method depends on a cool android app that will allow you to change name of your icon in your android home screen by just proceeding with some simple settings that we are going to discuss right below. So follow up the steps below to proceed. Steps To Rename Your Android Home Screen Icons: First of all you need to download and install co...
C programming video tutorial | Introduction to Programming Languages Watch the tutorial Hey friends, Today I has came up with a concept of sharing best C programming video tutorials available on internet. This video tutorial is made by Mr Phil Hameed, a software engineer having 15 years of exhaustive experience in C and C++ programming language . This is first of the series of tutorials covering the entire course of Programming In C Language . This tutorial basically gets you started by downloading and installing a FREE C/C++ compiler and Integrated Development Environment (IDE) called Dev-C++. This environment will be used in all the subsequent classes in this course. Let enjoy the C programming video tutorial 2 | Introduction to Programming Languages. This tutorial gives an introduction to different types of programming languages. It also covers the definition of Compilers, Interpretors, Assemblers etc. It also creates the very first C Program...
Comments
Post a Comment