Month: May 2017

16
May
2017

Java Developer

Java/J2EE Developer (EG-560) We are looking for a Java programmer to join our core team. Qualificatons Master…

14
May
2017

When We Need Recursion ?

When we don’t need any explicit stacks then we need recursion: #include<stdio.h> void decToBin(unsigned int n){ if(n==1)…

14
May
2017

Recursion in C

code: #include<stdio.h> void printNo(unsigned int n) { if(n==0) return; //it is outing from this function and going…

14
May
2017

DCP-4: Great!!! The Work Is Done Solution

code i tried  around 5 of hours but didn’t succeded: #include<stdio.h> #include<math.h> int main() { int t,n,i,result,p,sum=0;…

13
May
2017

Recursion Example

code: #include<stdio.h> void printMsg(unsigned int n) { if(n==0) return; //when we are using return in void function…

13
May
2017

Void clear in C

We  see lots of void in C. Lets clear why we all use  this. int myFunc(void){ }…