You are here

Page not found

Search results

  1. Function overloading in C++

    ... known as compile-time polymorphism. Function overloading C++ program #include <iostream> using namespace std ; ... double, and other data types. In the functions, the code is the same but data types are different, C++ provides a solution to this ...

    devyog - 31/10/2019 - 22:18

  2. C Game Programming Tutorial

    C game programming tutorial is for all those who wish to make their games or ... mouse button is clicked etc. Here you will find sample source code and programs, you can also download executable files so you can understand ...

    devyog - 28/07/2019 - 20:54

  3. Armstrong number in C

    Armstrong number C program to check whether a number is an Armstrong number or not, it's a ... then the number is an Armstrong number otherwise not. C program to print Armstrong numbers ... + 1 + 823543 +128 + 78125) Armstrong number program in C #include <stdio.h> int power ( int , int ) ...

    devyog - 12/12/2019 - 21:06

  4. C program to find HCF and LCM

    C program to find HCF and LCM: The code below finds the highest common factor and the least common multiple of two ... || []).push({}); HCF of two numbers in C #include <stdio.h> int main ( ) {   int a ...

    devyog - 10/12/2019 - 20:50

  5. C program to find the frequency of characters in a string

    C program to find the frequency of characters in a string: This program counts ... how many times in the string. For example, in the string "code" each of the characters 'c,' 'd,' 'e,' and 'o' has occurred one time. Only lower case alphabets ...

    devyog - 23/11/2019 - 11:40

  6. Conditional compilation in C programming language

    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 ... the following code to quickly understand the scenario: C program #include <stdio.h> #define x 10       int ...

    devyog - 23/11/2019 - 11:40

  7. C program to sort a string in alphabetic order

    C program to sort a string in alphabetic order: For example, if a user inputs a ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> #include ... int no [ 26 ] = { 0 } , n , c , t , x ;   printf ( "Enter some text \n " ) ; ...

    devyog - 23/11/2019 - 11:40

  8. 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. ...

    devyog - 28/12/2017 - 21:34

  9. Fibonacci series in C

    Fibonacci series in C using a loop and recursion . You can print as many terms of the series as ... || []).push({}); Fibonacci series program in C #include <stdio.h> int main ( ) {   int ... , first = 0 , second = 1 , next , c ;   printf ( "Enter the number of terms \n " ) ; ...

    devyog - 25/10/2020 - 23:45

  10. Area of a triangle in C

    C program to find the area of a triangle using Heron's or Hero's formula. The ... The program assumes that a user will enter valid input. C program to find area of a triangle #include <stdio.h> #include ... int main ( ) {   double a , b , c , s , area ;   printf ( "Enter sides of a triangle \n ...

    devyog - 23/11/2019 - 11:40

Pages