Write a Program to print the sum of digits of a given number.
Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { int no […]
Read moreTechnology + Coding
Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { int no […]
Read moreAMAZON PROJECT HTML & CSS AMAZON PROJECT HTML & CSS HTML CODE <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> […]
Read moreCharacter Pattern in Java Character Pattern in Java import java.util.*; public class Character_Pattern { public static void main(String[] args) { […]
Read moreFind factorial of a number in C++ Find factorial of a number in C++ #include <iostream> using namespace std; int main() { int n; […]
Read morePATTERN PRINTING -2 in C++ PATTERN PRINTING -2 in C++ STAR TRIANGLE #include<iostream> using namespace std; int main() { int n; cout<<“enter n : “; […]
Read morePattern Printing -1 in C++ Pattern Printing -1 in C++ NUMBER SQUARE #include<iostream> using namespace std; int main(){ int n; cout<<“Enter a number : “; […]
Read more#include <stdio.h> #include <stdlib.h> // For exit() int main() { FILE *fptr1, *fptr2; char […]
Read more#include <stdio.h> int main() { // Get the two Strings to be concatenated char str1[100] = “Good”, str2[100] = “morning”; […]
Read moreProgram to find largest element in 2D Array Program to find largest element in 2D Array #include<stdio.h> int main() { int r; […]
Read moreOCR and MICR OCR and MICR OCR OCR is stands for ( Optical Character Recognition ) . It is a technology that converts different types […]
Read moreBinary To Decimal in C Binary To Decimal in C Question: Write a C program to convert a Binary number into Decimal number. […]
Read more
Recent Comments