Month: April 2017

08
Apr
2017

Condition and Loop problems

write a program which will take N integer from user and print all the numbers between N…

07
Apr
2017

Pattern Printing

Problem: **** *** ** * code: #include<stdio.h> int main() { int i,j; for(i=1; i<=4; i++) { for(j=i;…

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…

06
Apr
2017

https://www.quora.com/How-can-I-improve-my-logical-skills-for-programming

06
Apr
2017

How to improve programming logical skills ?

I am not sure how relevant my post is in this context. But if you want to…

05
Apr
2017

Operator Precedence in C

https://www.youtube.com/watch?v=zlDhmieiYwA