simple interest program in c in hindi |Program to find the simple interest
simple interest program in c in hindiExplanationसाधारण ब्याज बैंकिंग और आर्थिक क्षेत्रों में ऋण पर ब्याज शुल्क की गणना के लिए उपयोग की जाने...
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...
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...
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',...
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...
Palindrome Program in Java in Hindi
जावा में पैलिंड्रोम संख्या: एक पैलिंड्रोम संख्या एक संख्या है जो रिवर्स के बाद समान होती है। उदाहरण के लिए 545, 151, 34543, 343,...
Reverse string in python | Syntax for reverse() List Method in Python.
Python - reversereverse() method is used to reverse the given list.Flowchart:-Syntax for reverse() List Method in Pythonlist.reverse()Parameter : There is no parameter for reverse()...
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...
leap year condition in Hindi |Write a program in C to check given no...
इस पोस्ट में, आप सी में अलग-अलग तरीकों से सीखेंगे, कि यह जांचने के लिए कि कोई विशेष वर्ष लीप वर्ष है या नहीं।एक...
C++ Check if the number is Positive or Negative Program in hindi
C++ Check if the number is Positive or Negative Program in hindiसभी को नमस्कार!इस ट्यूटोरियल में, हम सीखेंगे कि C++ प्रोग्रामिंग भाषा में यह...










