Home Programming Practice

Programming Practice

program to print hello world in c++

Program to print Hello World in C++|C++ Hello World Program

Program to print Hello World in C++While writing programs in C or C++, first use Header Files (Preprocessor). This has to be written because...
simple interest program in c

simple interest program in c in hindi |Program to find the simple interest

simple interest program in c in hindiExplanationसाधारण ब्याज बैंकिंग और आर्थिक क्षेत्रों में ऋण पर ब्याज शुल्क की गणना के लिए उपयोग की जाने...
Write a Python program to move all spaces to the front of a given string in single traversal.

Python: Move all spaces to the front of a given string in single traversal

Write a Python program to move all spaces to the front of a given string in single traversal.Let's see some sample test cases before...
Program to find greatest of two numbers in c in hindi

Program to find greatest of two numbers in c in Hindi.

दी गई दो संख्याओं में से सबसे बड़ी संख्या ज्ञात करने के लिए C प्रोग्राम की चर्चा यहाँ की गई है। उपयोगकर्ता से दो...
move spaces to the front of a given string

Python: move spaces to the front of a given string

write a python program to move spaces to the front of a given string.Program:-def move_Spaces_front(str1): noSpaces_char = spaces_char = len(str1) - len(nospaces_char) result = ' '*spaces_char result...
c program to print hello world

How to print Hello World in c languages|C program to print Hello world

How to print Hello World in c languages"Hello, World!" program. It's the first program many of us learn when we start programming. for...
C++ प्रोग्राम दो नंबर स्वैप केसे करे

C++ प्रोग्राम दो नंबर स्वैप केसे करे | C++ Program to Swap Two Numbers...

C++ प्रोग्राम दो नंबर स्वैप केसे करेदो नंबरों को स्वैप करने के लिए प्रोग्राम बनाने के दो तरीके हैं। एक में एक अस्थायी चर...
Area of Triangle C++ Program in Hindi

Program to Accept value of base & height and Calculate Area of Triangle c++...

Area of Triangle C++ Program in Hindiसमस्या को समझना:-हमें एक ऐसा प्रोग्राम लिखना होता है जो यूजर से त्रिभुज की तीन भुजाओं को...
Prime Number Program in Java

Prime Number Program in Java | Write a program to print Prime Number Program...

write a program to print Prime Number Program in Java.import java.util.Scanner;public class Prime { public static void main(String args) { int num,i,count=0; System.out.println("Enter a number: "); Scanner enter = new...
reverse a string in java

reverse a string in Java |how to reverse a string in Java |simply reverse...

reverse a string in JavaHow to Reverse a String in Java or Reverse a String in Java How to Reverse a String. This is...