Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 7
Member Avatar for filxy

when i debug this code it is giving few errors whats wrong in this code can anyone please help out :S #include "stdafx.h" #include <iostream> #include <conio.h> #include <string> #define T_SEMICOLON';' #define T_LPAREN'(' #define T_RPAREN')' #define T_ASSIGN'=' #define T_DIVIDE'/' #define T_WHILE 257 #define T_IF 258 #define T_RETURN 259 #define T_IDENTIFIER …

Member Avatar for sepp2k
0
283
Member Avatar for filxy

i was making a lexical analyzer but i am stuck here can anybody please help with this where am i going wrong :S Console.WriteLine("ENTER STRING:"); // string ch = string.Intern(System.Console.ReadLine()); string str = Console.ReadLine(); Console.ReadLine(); string[] kw = new string[2]{ "for","while"}; string[] punc = new string[2]{ ";","."}; //if(kw.Contains(str)) switch (str) …

Member Avatar for Ketsuekiame
0
149
Member Avatar for filxy

hey guys can someone help me with this i am stuck here where do i define a loop to add more nodes in the linked list or any other way to define nodes itslef in the code class Program { static void Main(string[] args) { List obj = new List(); …

Member Avatar for tinstaafl
0
225
Member Avatar for filxy

class Program { static void Main() { Console.WriteLine("Roll Nos." + " " + " Names" + " " + "score 1" + " " + "score 2" + " " + "score 3" + " " + "Average\n"); Console.ReadLine(); LinkedList<string> Linked = new LinkedList<string>(); Linked.AddLast("maryam"); Linked.AddLast("ali"); Linked.AddLast("mahum"); Linked.AddLast("aliza"); Linked.AddLast("faizan"); Linked.AddLast("mehreen"); …

Member Avatar for tinstaafl
0
479