Posts

Showing posts from February, 2023
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 ...