Tag: crypto currency
-

Bitcoin is illegal in Nepal says Central Bank of Nepal, Bans On Any Transactions
KATHMANDU, JUN 30 – Bitcoin is illegal in Nepal.” says Deputy Director, Kedar Prasad Acharya, Nepal Rastra Bank in an event organized at Thames International College, 30th June 2017. In an event organized by Thames International College, Nepal Business Gabfest, 2017. A question was raised regarding bitcoin legalities and regulation in Nepal. Then we received the…
-

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…