You are here

Page not found

Search results

  1. C programming

    ... do so you need a text editor and a compiler to translate a source program into machine code that can be executed directly on a machine. ... to communicate. There are many languages such as C, C++, Java, Python, and many others, each having their features. Let's discuss first ...

    Yogesh Suneja - 10/12/2019 - 20:37

  2. C Game Programming Tutorial

    ... mouse button is clicked etc. Here you will find sample source code and programs, you can also download executable files so you can understand ...

    Yogesh Suneja - 28/07/2019 - 20:54

  3. putimage function in c

    ... at (left, top). ptr points to the area in memory where the source image is stored. The op argument specifies a operator that controls how ... based on pixel already on screen and the corresponding source pixel in memory. Smiling face animation program using putimage. ...

    Yogesh Suneja - 28/12/2017 - 21:34

  4. String concatenation in C

    ... its length before concatenation. But, it'll increase the code size. Make a copy of the first string before concatenation. This ... 100 ] ;         printf ( "Enter source string \n " ) ;     gets ( original ) ;   ...

    Yogesh Suneja - 04/10/2020 - 11:26

  5. C program to shut down or turn off computer

    ... the folder. Press F9 to build your executable file from source program. When you run program from within the compiler by pressing ...

    Yogesh Suneja - 18/11/2019 - 22:17

  6. Paint program in C

    ... change the color, clear the screen. /* To understand the code see output below the code, it will help you in understanding the code. */ C paint program ...

    Yogesh Suneja - 23/11/2019 - 12:26

  7. Conditional compilation in C programming language

    ... Conditional compilation as the name implies that the code is compiled if certain condition(s) hold true. Normally we use if keyword ... so that compiler can determine whether to compile the code or not. The different thing is #if. Now consider the following code to ...

    Yogesh Suneja - 23/11/2019 - 11:40

  8. getdate C

    Program to print current system date, getdate C code below explain how to use this function to print computer date. Getdate example C programming code to print date #include<stdio.h> #include<dos.h> main ...

    Yogesh Suneja - 10/12/2017 - 06:21

  9. Linear search in C

    ... Linear search C program for multiple occurrences In the code below we will print all locations at which required element is found and ... Linear search multiple occurrence program. Output of code: C program for linear search using a function #include ...

    Yogesh Suneja - 13/12/2019 - 21:04

  10. Function overloading in C++

    ... double, and other data types. In the functions, the code is the same but data types are different, C++ provides a solution to this ... for different data types which will reduce the size of code by using a feature of C++ known as templates. C++ program for function ...

    Yogesh Suneja - 31/10/2019 - 22:18

Pages