summaryrefslogtreecommitdiffstats
path: root/4
diff options
context:
space:
mode:
authorSadeep Madurange <smadurange@users.noreply.github.com>2021-12-07 18:36:02 +0800
committerSadeep Madurange <smadurange@users.noreply.github.com>2021-12-07 18:36:02 +0800
commit189455cc86dc92b240034ac610f1ff9d10c01875 (patch)
treecbac1b01f390e519a96cca7996b5865d900c6523 /4
parentb2661e22ee6604bd374e075b6da9ce8907f24e8d (diff)
downloadk&r-exercises-189455cc86dc92b240034ac610f1ff9d10c01875.tar.gz
4.3
Diffstat (limited to '4')
-rw-r--r--4/3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/4/3.c b/4/3.c
index acacd29..5ea0af1 100644
--- a/4/3.c
+++ b/4/3.c
@@ -20,7 +20,8 @@ void push(double);
/* pop and return top value from stack */
double pop();
-/* reverse Polish calculator with modulus and support for negative numbers */
+/* reverse Polish calculator with support for modulus operator and negative
+ * numbers */
int main(int argc, char *argv[]) {
int type;
double op2;