Tag: lamichhane

  • Sandeep Lamichhane’s Journey from Nepal to IPL

    Sandeep Lamichhane’s Journey from Nepal to IPL

    KATHMANDU – Sandeep Lamichhane, one of the valued members of the Nepali National Cricket (NCC) team has been now associated with Delhi Daredevils, an Indian Cricket Club. Lamichhane has been now trending in the country and abroad. 17-year old Nepalese leg-spinner Sandip is being bombarded with congratulations messages over Social media right after Delhi Daredevils bought…

  • Being Human or Inhuman

    Being Human or Inhuman

    Being Human or Inhuman, the food in your plate decides. And being a human well being is decided by the Satvikness (truthfulness) in your thoughts. – Rabins Sharma Lamichhane

  • Ackermann Function

    Ackermann Function

    Ackermann Function is the simplest example of a well defined total function which is compatible but not primitive recursive. It grows faster than an exponential function. /* Ackermann Function */ #include<stdio.h> #include<stdlib.h> int count = 0, indent = 0; int ackermann(int x, int y) { count++; if(x<0 || y<0) return -1; if(x==0) return y+1; if(y==0)…

  • Infix Expression to Post-fix (Reverse police) Notation

    Infix Expression to Post-fix (Reverse police) Notation

    Here we just look out the code on Infix to Postfix expression notation. It is also known as Reverse police method. Find the full code snippet below. Sample Code of Reverse Police Method /* Infix expression to post-fix (Reverse police) notation RabinsXp.com */ #include<stdio.h> #include<ctype.h> #define MAX 100 typedef struct stack { int data[MAX]; int…