Learn C programming language [Part II] :: [First C]

And a compiler for a computer programming needs. By two o'clock it were to do so? Starting with the letter A and is associated with dutai mpa.If you do not have a computer, I could not read the writing, is not it? The need for a compiler. A C compiler. Our code of programming code that will compile and implement.Why do I need before the compiler. We write our computer can not read it. The need for computer machine language. The compiler converts the machine coded in C programming. The article about the little things to make the compiler can be seen. And the difference between the compiler and IDETo compile code written in C, and we'll use CodeBlocks IDE. Go to the link below to download CodeBlocks codeblocks-12.11mingw-setup_user.exe the download.http://www.codeblocks.org/downloads/binariesThen install. Open. If you like, will be able to see.
 Once installed, you are ready to write the code.

From here, the Create New Project Click

 Then click Console Application and click Go
Select the C and click Next. Project Title box, enter the name of your project. Such hello. Folder to create project in any folder you want to save your project to the box to select it. Next to clean. Clean at the Finish.You will see the right side of the workspace. Show your project there. hello, click the + icon. Source s + click on the icon and then click on the main.c. CodeBlocks by creating a simple temalpaleta a code for the project, it will show. Writing in the PROGRAM.

 #include<stdio.h>
int main()
{
printf("Hello world!");
return 0;
}


#include<stdio.h>
int main()
{
    printf("Hello world!");
    return 0;
} - See more at: file:///F:/webtool%20save%20page%20and%20software/new%20video%20tutorial%20and%20software/c%20programming/C%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%E0%A6%BF%E0%A6%82%20%E0%A6%B2%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%99%E0%A7%8D%E0%A6%97%E0%A7%81%E0%A6%AF%E0%A6%BC%E0%A7%87%E0%A6%9C%20%E0%A6%B6%E0%A6%BF%E0%A6%96%E0%A7%81%E0%A6%A8%20%5B%E0%A6%AA%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%9F%20%E0%A7%A8%5D%20%20%5B%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%A5%E0%A6%AE%20%E0%A6%B8%E0%A6%BF%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%5D%20_%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%BF%E0%A7%9F%20%E0%A6%9F%E0%A7%87%E0%A6%95.htm#sthash.MFOomUDz.dpuf
#include<stdio.h>
int main()
{
    printf("Hello world!");
    return 0;
} - See more at: file:///F:/webtool%20save%20page%20and%20software/new%20video%20tutorial%20and%20software/c%20programming/C%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%E0%A6%BF%E0%A6%82%20%E0%A6%B2%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%99%E0%A7%8D%E0%A6%97%E0%A7%81%E0%A6%AF%E0%A6%BC%E0%A7%87%E0%A6%9C%20%E0%A6%B6%E0%A6%BF%E0%A6%96%E0%A7%81%E0%A6%A8%20%5B%E0%A6%AA%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%9F%20%E0%A7%A8%5D%20%20%5B%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%A5%E0%A6%AE%20%E0%A6%B8%E0%A6%BF%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%5D%20_%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%BF%E0%A7%9F%20%E0%A6%9F%E0%A7%87%E0%A6%95.htm#sthash.MFOomUDz.dpuf
 Our code will compile and run from the File menu, click on Build and click Build and Run. If your C program will compile and run. And it show output.
 If you can run the program, then congratulations to you and to the programming of the fun in the world. If you can not do not need to get upset. Please try again from the beginning. Only then will.We write the code, let's explain a little.Our program is the first line #include <stdio.h>. include means something to add. purnarupa stdio of the standard input output. It refers to a header file with the .h of stdio.h. And that implies that the standard input output purolaina to add. tell me more after standard input output.The next line int main (), the main function is called. Then we'll run the program will start from the main function. So all of a program (and only one) main function is to contain. The main function is to begin with the beginning of the second bracket. The main function is finished with a brace.I write in the first line of the main function of the second bracket we printf ("Hello world!");The printf () is a function. printf means print formatted. It is a library of functions that the standard output functions. printf () is the work of the console / screen to print something. Double quotation mark in what we write on the screen that will print. We have written the first in a line #include. printf () function to print anything that is written in the file stdio.h.Another line of writing, we return 0; We're talking about one of the main functions. A return value of the function in every stay. At the end of the function that returns. return 0 means zero returns. More details about this later when we read about the function.printf ("Hello world!"); Or return 0; Values ​​in the Statement (Statement). At the end of each statement with a semicolon (;) is. If the semicolon, if we do not show up and the program will not run compailare wrong. Many people forget to put a semicolon at the start of programming, then compile error (compile error) shows, then try to find where the error occurred. Please note that these codes if a bit small mistakes can easily be avoided.I try to write the program itself. Hello world! I like your name or something instead of trying to run with.
#include<stdio.h>
int main()
{
    printf("Hello world!");
    return 0;
} - See more at: file:///F:/webtool%20save%20page%20and%20software/new%20video%20tutorial%20and%20software/c%20programming/C%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%E0%A6%BF%E0%A6%82%20%E0%A6%B2%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%99%E0%A7%8D%E0%A6%97%E0%A7%81%E0%A6%AF%E0%A6%BC%E0%A7%87%E0%A6%9C%20%E0%A6%B6%E0%A6%BF%E0%A6%96%E0%A7%81%E0%A6%A8%20%5B%E0%A6%AA%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%9F%20%E0%A7%A8%5D%20%20%5B%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%A5%E0%A6%AE%20%E0%A6%B8%E0%A6%BF%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A7%8B%E0%A6%97%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%AE%5D%20_%20%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%BF%E0%A7%9F%20%E0%A6%9F%E0%A7%87%E0%A6%95.htm#sthash.MFOomUDz.dpuf

Comments

Popular posts from this blog

কৃষি বিষয়ক সম্পর্কিত ABBREVIATION কৃষি সম্প্রসারণ অধিদপ্তরের নিয়োগ পরীক্ষা জন্য বাছাই করা সাজেশন

ডাটাবেজ ম্যানেজমেন্ট সিস্টেম পার্ট – 01

Bijoy Bayanno 2014 :: 1 Click Download বিজয় বাহান্নো