Raunak Kumar • Computer
C Program to find sum of two numbers#include<stdio.h>int main(){ int a, b, sum; printf("\nEnter two no: "); scanf("%d %d", &a, &b); sum = a + b; ...
1 Question 1 Thank 231 Views
Rabin Kalikote • Computer
// To convert temperature in Celcius to Fahrenheit scale. #include <stdio.h>#include <conio.h>int main(){ float dc, fer; printf("Enter temperature in...
0 Questions 2 Thanks 197 Views
Shahil Magar • Computer
Randomly generate a 4-digit number. Ask the user to guess a 4-digit number. For every digit that the user guessed correctly in the correct place, they have a “cow”. Fo...
0 Questions 0 Thanks 167 Views
The following program is to check the strength of the input password under the given criteria using regular expression written in Python language. For more about regul...
0 Questions 1 Thank 240 Views
Manoj Gurung • Computer
Note: The following program is written in python.This is the solution of the Q.No.4 of projecteuler.net site.A palindromic number reads the same both ways.eg. 121, 122...
1 Question 1 Thank 1543 Views
2 Answers Helpful (2) 323 Views
1 Answer Helpful (2) 95 Views
1 Answer Helpful (1) 96 Views