Category: ACM
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…
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{…
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…
Change is the only constant. Don’t fear it and keep moving forward. Learn to ignore which/who doesn’t…
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…
Honestly its very difficult. Since It company gives importance to degree and skills both. There is no…
Recent Comments