Posts

Image
                                        Now, shall we start to develop our C programming knowledge. I hope to develop your knowledge 0 to hero. After this tutorial serious you will flaunt in C programming language. To write our first c program open Code Blocks and then open C console and write following code.              #include <stdio.h>      int main() {      printf("Wel Come to Tech Knowledge Academy");      return 0;   }    follow below video.        In this program # include <stdio.h > consist   standard input output  library functions and    The  main() function is  the starting point of every C  programs.  printf() function is  used to print data  on the console.  return statement, returns e...
Image
How to Install Code Blocks                                 Code Blocks is an open-source cross-platform IDE that support to compile multiple compilers like Visual C++ and GCC. It was developed in C++ by using wxWidgets which use as the GUI toolkit. Code Blocks was developed for Windows and Linux, and it ported to FreeBSD, OpenBSD and Solaris. But now Code Blocks is mostly use for C, C++, and Fortran.   Now Let's see how to install code block to your Windows 10 computer. First you should download setup file and you can use below link.                      https://www.codeblocks.org/ Then click download and follow below steps and click topics which shown by using red arrows.               Then you can see mingw-setup file automatically start to download. Then open that downloaded file and follow this below ...
Image
               C is a popular programming language that flexible and easy to use and it is a structured programming language that is machine independent and use to write various programming applications ‘C’ was developed by Dennis Ritchie in 1972 and it is a low programming level language close to machine language. It is mostly used in the software development field.                       C is a procedure and structure-oriented language and lots of compilers are available to execute programs written in ‘C.’      Various operating systems and hardware platforms support to run C programming language. The compiler compiles the source file and create an object file. After that a linker links all the object files together and creates one executable file.                           Mostly C programing language is the...