Tag: samsung galaxy j7 price in nepal

  • Samsung Galaxy J7 16GB

    Samsung Galaxy J7 16GB

    Samsung Galaxy J7 (2016) 16GB – 4G Smartphone in Nepal SPECIFICATIONS [divider] Display Display Type: Super AMOLED HD Screen Resolution: 1280 x 720 Touch Screen: Yes [divider] Imaging Integrated Camera: Yes – Front and Back Rear-Facing Camera: 13 megapixels Front-Facing Camera: 5 megapixels [divider] Power Battery Type: Lithium-ion Battery Capacity: 3000 milliampere hours [divider] Compatibility…

  • Arithmetic Operators and Operations – Verification in C Language

    Arithmetic Operators and Operations – Verification in C Language

    We all know that Arithmetic operators are used to performing arithmetic operations in C programming language. Before starting verification program here is a list of operators and their functions and examples. [divider] Basic Arithmetic Operators Operator: + Meaning: Addition Operator Example: 10 + 20 = 30 [divider] Operator: – Meaning: Subtraction Operator Example: 20 – 10…

  • Postfix Evaluation in C

    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

    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…