Palindrome Program in Java in Hindi

Palindrome Program in Java in Hindi

जावा में पैलिंड्रोम संख्या: एक पैलिंड्रोम संख्या एक संख्या है जो रिवर्स के बाद समान होती है। उदाहरण के लिए 545, 151, 34543, 343,...
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...
reverse string python

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()...
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 =...
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...
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समस्या को समझना:-हमें एक ऐसा प्रोग्राम लिखना होता है जो यूजर से त्रिभुज की तीन भुजाओं को...
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++ Check if the number is Positive or Negative Program in hindiसभी को नमस्कार!इस ट्यूटोरियल में, हम सीखेंगे कि C++ प्रोग्रामिंग भाषा में यह...
program in C to check given no is leap year or not in Hindi

leap year condition in Hindi |Write a program in C to check given no...

इस पोस्ट में, आप सी में अलग-अलग तरीकों से सीखेंगे, कि यह जांचने के लिए कि कोई विशेष वर्ष लीप वर्ष है या नहीं।एक...
Program to assign values of two numbers and print their addition

Program to assign values of two numbers and print their addition.

In this program we will learn how we can add two digits using C programming, for this we will first get the user to...