Tag: elephone p9000 lite specs
- 
			

Elephone P9000 LITE (32GB)
Elephone P9000 LITE (32GB) – 4G Mobilephone in Nepal Helio P10 64-bit Octa-core 4GB RAM+32GB ROM 5.5″ FHD,Narrow Bezel,3000-3080mAh ,Type-C Bluetooth: 4.0, FM Support Sensor: G-sensor,P-sensor,L-sensor,Hall, E-compass Special Software: E-TOUCH, Smart key (Intelligent Mute Mode etc). Black Screen Gesture Dual SIM, dual standby (2 * Micro SIM) [divider] SPECIFICATIONS [divider] DESIGN Device type: Smart phone…
 - 
			

Postfix Evaluation in C
A complete code block example on Postfix Evaluation in C Data Structures. The following code snippet is complete working C-code on evaluating postfix. I have commented the code for easy understanding. Size of Stack Global declarations Read the postfix expressions Push the operand Operator/pop two operands Invalid Operator Printing the given postfix operations The result…
 - 
			

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
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…