Java From Scratch (Free Udemy Course)

If you want to learn Java from scratch with elementary instruction you can follow this article. We are providing a coupon for udemy course for Java for the beginners. Get the coupon and start learning Java from scratch from udemy. Java From Scratch (Free Udemy Course) Requirements A compiler for …

Read more

Top 10 Websites for Practice Programming

There are many sites through which you can practice and develop your skill in programming. But as per my view, I find these sites more helpful. Now I am going to share it with you. 1.HACKER  RANK Hacker rank is one of the best that I have seen. It has a pretty good looking with very …

Read more

C Program to Find the Largest Number Among Three Numbers

#include <stdio.h> int main() {     double n1, n2, n3;     printf(“Enter three numbers: “);     scanf(“%lf %lf %lf”, &n1, &n2, &n3);     if( n1>=n2 && n1>=n3)         printf(“%.2lf is the largest number.”, n1);     else if (n2>=n1 && n2>=n3)         printf(“%.2lf is the largest number.”, n2);     else         …

Read more

C Program to Check Whether a Number is Even or Odd

#include <stdio.h> int main() { int n; printf(“Enter an integer: “); scanf(“%d”, &n); // Number will be even if the number is perfectly divisible by 2 if(number % 2 == 0) printf(“%d is even number.”,n); else printf(“%d is odd Number.”,n); return 0; }