×
NOTE!
Click on MENU to Browse between Subjects...
Advertisement
SYSTEM SOFTWARE AND OPERATING SYSTEM LABORATORY
[As per Choice Based Credit System (CBCS) scheme]
(Effective from the academic year 2017 - 2018)
SEMESTER - VI
Subject Code 17CSL67
IA Marks 40
Number of Lecture Hours/Week 01I + 02P
Exam Marks 60
17CSL67 - SYSTEM SOFTWARE AND OPERATING SYSTEM LABORATORY
Program 1 A
Write a LEX program to recognize valid arithmetic expression. Identifiers in the expression could be only integers and operators could be + and *. Count the identifiers & operators present and print them separately.
Advertisement
Advertisement
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | %{ #include<stdio.h> int v=0,op=0,id=0,flag=0; %} %% [0-9][0-9]* {id++;printf("\nIdentifier:");ECHO;} [\+\-\*\/\=] {op++;printf("\nOperartor:");ECHO;} "(" {v++;} ")" {v--;} ";" {flag=1;} .|\n {return 0;} %% int main() { printf("Enter the expression:\n"); yylex(); if((op+1) ==id && v==0 && flag==0) { printf("\n\nIdentifiers are:%d\nOperators are:%d\n",id,op); printf("\nExpression is Valid\n"); } else printf("\nExpression is Invalid\n"); return 1; } int yywrap() { return 1; } |
Output
×
Note
Page Number is specified to navigate between Pages...
SYS = Syllabus
P = Program
-ADMIN
SYS = Syllabus
P = Program
-ADMIN
×
Note
Do Share the website link with Your Friends and known Students...
-ADMIN
-ADMIN
lIKE OUR CONTENT SUPPORT US BY FOLLOWING US ON INSTAGRAM : @futurevisionbie
Latest Updates are also posted in instagram as Stories...
For immediate Notification Join the Telegram Channel
Advertisement