Page not found
Search results
C++ programs
C++ programming language is a powerful and widely used object-oriented programming language. Given below are some C++ programs. C++ language programs C++ Hello World program C++ program to add two numbers C++ program to reverse a ...
devyog - 31/10/2019 - 22:25
Delay function in C
Delay in C: delay function is used to suspend execution of a program for a particular time. Declaration: void delay(unsigned int); ... the "dos.h" header file which is not a part of standard C library. (adsbygoogle = window.adsbygoogle ...
devyog - 29/09/2018 - 13:46
Print numbers without using loops
C program to print first n natural numbers without using any loop (do-while, for, ... i.e., without creating any function other than main. C program using recursion #include <stdio.h> void print ( ...
devyog - 09/10/2020 - 22:48
Decimal to binary in C
Decimal to binary in C to convert an integer from decimal number system (base-10) to binary number ... = window.adsbygoogle || []).push({}); C program to convert decimal to binary #include <stdio.h> int ...
devyog - 10/10/2020 - 15:27
Linked list in C
... struct node * next ; } ; Linked list program in C #include <stdio.h> #include <stdlib.h> struct node ...
devyog - 08/12/2019 - 00:36
C sound program
... sound of a specified frequency. Used for adding music to a C program, try to use some random values in loop, vary delay and enjoy. ...
devyog - 28/09/2018 - 10:51
C++ constructor example
C++ constructor example program: Constructor are functions having name as that of the class. They do ... have return type and are used to initialize objects. C++ constructor program example #include <iostream> using ...
devyog - 06/02/2018 - 13:57
String concatenation in C
C program to concatenate two strings; for example, if the two input strings are "C programming" and " language" (note the space before language), then the ...
devyog - 04/10/2020 - 11:26
Symmetric matrix in C
C program to check if a matrix is symmetric or not: we find the transpose of the ... original matrix. For a symmetric matrix A, A T = A. C program to check if a matrix is symmetric or not #include<stdio.h> ...
devyog - 03/12/2019 - 22:19
sqrt in C
Function sqrt in C returns the square root of a number. To use it, include the "math.h" header file in the program. Declaration: double sqrt(double); Square root in C using sqrt function #include <stdio.h> #include <math.h> ...
devyog - 04/11/2020 - 13:23