Category: C
-
Avast Security Issue in macOS Big Sur (Fixed)
I had been using Avast Security Antivirus for many years. It has been my most preferred Antivirus to be precise. Recently, I had updated to macOS Big Sur and I am having a problem cause of this AV. The following Core Shields are not working. File Shield: This is the only working feature. Web Shield:…
-
Top 5 Free Antivirus for MacBook Pro (2020)
Top 5 Popular MacBook Pro Free Antivirus Softwares in Nepal [one_half][alert-note]List of free Anti-virus software for your MacBook Pro popular in Nepal is as follows. Sophos AVG Anti-Virus for Mac AVG Cleaner for Mac Avira Antivirus for Mac Comodo Antivirus for Mac [/alert-note][/one_half] [one_half_last] [alert-announce][tooltip content=”सबै एन्टिभाइरस सफ्टवेरहरुको डाउनलोड लिन्कहरु यो पृष्ठ को आन्तिम मा…
-
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
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…