C Program to calculate Area and Circumference of Circle sirfpadhai
C Program to calculate Area and Circumference of Circle sirfpadhaiयहां हम एक साधारण सी प्रोग्राम लिख रहे हैं जो उपयोगकर्ता द्वारा प्रदान किए गए...
operator overloading in c++ example in hindi | operator overloading in c++ full details.
Operator overloading in C++ऑपरेटर ओवरलोडिंग एक संकलन-समय बहुरूपता है जिसमें उपयोगकर्ता द्वारा परिभाषित डेटा प्रकार को विशेष अर्थ प्रदान करने के लिए ऑपरेटर को...
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...
Program to find greatest of two numbers in c in Hindi.
दी गई दो संख्याओं में से सबसे बड़ी संख्या ज्ञात करने के लिए C प्रोग्राम की चर्चा यहाँ की गई है। उपयोगकर्ता से दो...
simple interest program in c in hindi |Program to find the simple interest
simple interest program in c in hindiExplanationसाधारण ब्याज बैंकिंग और आर्थिक क्षेत्रों में ऋण पर ब्याज शुल्क की गणना के लिए उपयोग की जाने...
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...
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...
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',...
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...
write a program to print the Fibonacci series in c. |Fibonacci series program in...
write a program to print the Fibonacci series in c.In this program, we will learn how to print the Fibonacci series between 1 to...