[vc_row][vc_column]
Trending Now
Programming News
Python program to find largest and equal of two numbers
num1=int(input("Please enter first number: "))
num2=int(input("Please enter second number: "))
if(num1>num2): #check for num1 is largest and gives true when num1 is largest otherwise false
...
Guides
Tech One
Program to find the area of rectangle
#include<stdio.h>
#include<conio.h>
void main()
{
float a,b,area; /* a, b for 2 sides and area for result */
clrscr();
printf("enter two sides of rectangle...
Tech Two
punctuatorts
Punctuatorts क्या होते हैं?
punctuatorts वे symbol हैं जो प्रोग्रामिंग भाषाओं में वाक्य संरचनाओं को व्यवस्थित करने के लिए उपयोग किए जाते हैं, और भावों,...
Most popular
Python program to check number is prime or not using function
def prime(num):
if num > 1:
for i in range(2, num//2):
...
Program to finding the roots of quadratic equation
#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float a,b,c,d,root1,root2;
clrscr();
printf("Enter a b c n");
scanf("%f%f%f",&a,&b,&c);
d=b*b-4*a*c; /* finding determinant */ ...
Program for finding difference of two dates
#include<stdio.h>
#include<conio.h>
void main()
{
int d1, m1, y1; /* first date */
int d2, m2, y2; /*...
Python program to check whether a string is a palindrome or not using recursive
def is_palindrome(st):
if len(st) < 1:
return True
else:
...