Category: ACM

07
Apr
2017

Prime or Not

Another easy understandable tut is in this link: http://zakilive.com/2017/05/12/check-the-number-is-prime-or-not-in-c-easy-and-details-explanation/ Code: #include<stdio.h> int main() { int i,flag,N; flag=0; printf(“eNter…

05
Apr
2017

Sum of series

code: series: 1/1+1/2+1/3+….+1/N #include<stdio.h> int main() { int N,i; float sum; printf(“Enter N:”); scanf(“%d”,&N); sum=0; i=1; do{…

03
Apr
2017

How to extract a single digit from a number

Divide a number by 10 will give you a digit as int sample: 256/10=25.6==25 25/10=2.5==2 256%10=6 25%10=5…

31
Mar
2017

Programmer/Engineers Quotes

Change is the only constant. Don’t fear it and keep moving forward. Learn to ignore which/who doesn’t…

31
Mar
2017

Java For Competitive Programmers

https://www.quora.com/What-concepts-in-Java-should-I-learn-to-start-competitive-programming   Java certification will worth in this case to learn the language good but problem solving…

31
Mar
2017

IT jobs with knowledge of coding without degree?

Honestly its very difficult. Since It company gives importance to degree and skills both. There is no…