Page not found
Search results
log function in C
... log function returns natural logarithm (base = e) of a number, where e is the exponential number. Declaration: double log(double); C program to find logarithm of a number #include <stdio.h> ...
devyog - 27/11/2019 - 18:40
Transpose of a matrix in Java
Java program to find the transpose of a matrix (of any order), we interchange its ... ; System . out . println ( "Enter the number of rows and columns of matrix" ) ; m = in. nextInt ...
devyog - 05/12/2019 - 20:21
C programming
... you need a text editor and a compiler to translate a source program into machine code that can be executed directly on a machine. Dev C++ ... to communicate. There are many languages such as C, C++, Java, Python, and many others, each having their features. Let's discuss first ...
devyog - 10/12/2019 - 20:37
C program to shut down or turn off computer
C program to shut down your computer, i.e., to turn off a computer system. System ... = window.adsbygoogle || []).push({}); C program for Windows 7 #include <stdio.h> #include <stdlib.h> ... for example, you can use /t option to specify the number of seconds after which shutdown occurs. Syntax: "shutdown /s /t x"; ...
devyog - 18/11/2019 - 22:17
C program to find next prime palindrome
C program to find next prime palindrome: a user will enter a number, and we have to find the least number greater than it which is a ... n ++; t = n ; // Calculating reverse of the number while ( t ) { ...
devyog - 01/12/2019 - 08:56
C, C++, and Java programming
... . You can download C programs , C++ programs , Java programs , and projects from beginner to advanced level. The executable ... updating and adding new programs for our users. Java programs updated with images and class files. C graphics programs ...
devyog - 29/09/2020 - 15:48
C, C++, and Java programming tutorials and programs
... free C programming examples , C++ source codes , Java programs , programs and projects from beginner to advanced level. The executable and class (java) files are available for download. Wishing you all the best and ...
devyog - 05/07/2018 - 14:10
Floyd's triangle in C
C program to print Floyd's triangle: a user inputs how many rows of the triangle ... = window.adsbygoogle || []).push({}); C program to print Floyd's triangle #include <stdio.h> int ... , a = 1 ; printf ( "Enter the number of rows of Floyd's triangle to print \n " ) ; scanf ...
devyog - 11/10/2020 - 14:31
C program to add, subtract, multiply and divide Complex Numbers, complex arithmetic
C program to add, subtract, multiply and divide complex numbers. It is a menu driven program in which a user will have to enter his/her choice to perform an ... as many times as required. To easily handle a complex number a structure named complex has been used, which consists of two integers, ...
devyog - 23/11/2019 - 11:40
C program to compare large numbers (integers)
... positive, zero or negative, we will take care of it in our program. Algorithm of comparing: If both numbers are positive: If the length of one of them is greater than the other, the greater number is bigger. If the length of both is the same then we compare individual ...
devyog - 16/11/2019 - 09:19