Home Programming Practice

Programming Practice

C Program to calculate Area and Circumference of Circle

C Program to calculate Area and Circumference of Circle sirfpadhai

C Program to calculate Area and Circumference of Circle sirfpadhaiयहां हम एक साधारण सी प्रोग्राम लिख रहे हैं जो उपयोगकर्ता द्वारा प्रदान किए गए...
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...
operator overloading in c++ full details

operator overloading in c++ example in hindi | operator overloading in c++ full details.

Operator overloading in C++ऑपरेटर ओवरलोडिंग एक संकलन-समय बहुरूपता है जिसमें उपयोगकर्ता द्वारा परिभाषित डेटा प्रकार को विशेष अर्थ प्रदान करने के लिए ऑपरेटर को...
Fibonacci series program in java

Fibonacci series program in Java

What is the Fibonacci series?A Fibonacci series is a set of numbers where, starting with the third number, each number is the sum of...
Print the square and cube symbol in the area of a rectangle and volume of a cylinder

Python: Print the square and cube symbol in the area of a rectangle and...

Write a python program to print the square and cube symbol in the area of a rectangle and volume of a cylinder.Python Code:-area =...
Python Split a string on the last occurrence of the delimiter

Python: Split a string on the last occurrence of the delimiter| split string last...

Write a python program to split a string on the last occurrence of the delimiter.Program:-str1 = "s,i,r,f,p,a,d,h,a,i" print(str1.rsplit(',' , 1) print(str1.rsplit(',' , 2) print(str1.rsplit(',' , 5)Output:-'s,i,r,f,p,a,d,h,a','i' 's,i,r,f,p,a,d,h', 'a','i' 's,i,r,f,p',...
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साधारण ब्याज बैंकिंग और आर्थिक क्षेत्रों में ऋण पर ब्याज शुल्क की गणना के लिए उपयोग की जाने...
C++ प्रोग्राम दो नंबर स्वैप केसे करे

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

C++ प्रोग्राम दो नंबर स्वैप केसे करेदो नंबरों को स्वैप करने के लिए प्रोग्राम बनाने के दो तरीके हैं। एक में एक अस्थायी चर...
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...
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...