Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~56.3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

14 Posted Topics

Member Avatar for alex910TN

Hi guys, I am trying to implement my first carousel on my website. I have 5 images with the same dimensions with the following HTML markup: <div id="myCarousel" class="carousel slide"> <ol class="carousel-indicators"> <li data-target="#myCarousel" data-slide-to="0" class="active"></li> <li data-target="#myCarousel" data-slide-to="1"></li> <li data-target="#myCarousel" data-slide-to="2"></li> <li data-target="#myCarousel" data-slide-to="3"></li> <li data-target="#myCarousel" data-slide-to="4"></li> <li data-target="#myCarousel" …

Member Avatar for Abdullah_19
0
46K
Member Avatar for alex910TN

hey guys, I am really new to UI design and I am trying to finish building a simple website to include on my resume. My problem is that I have a login page with a radio button asking the user if they are an existing customer. If they are they …

Member Avatar for Patrickoller
0
885
Member Avatar for kurianjoseph

Best book personally is "Learning Web Design" 4th edition Jennifer Niederst Robbins.For HTML5 anf CSS3 I would give it a 9/10 but for JScript I would give it a 3/10. Not enough material for JS. Book solutions are included also.

Member Avatar for naina125
0
146
Member Avatar for alex910TN

Hello, I have an issue I am not sure how to handle. I am trying to call a function from within another function but I get the following warning "2129 [Warning] implicit declaration of function " I have defined prototypes for all my functions at the very start of main, …

Member Avatar for Ancient Dragon
0
148
Member Avatar for alex910TN

Hey guys, I am trying to implement the following but the compiler is not liking it. What can I do to fix this? Thanks for any help. typedef struct { int ordinalSum; int LexemeCode; Line Info; Node *next; <-- ??? }Node; error # 1 syntax error before "Node"

Member Avatar for cproger
0
260
Member Avatar for alex910TN

Hey guys, I find myself here once again seeking your expertese. Long story short, I need to create a hash function that will hash a list of lexemes in a programming language to unique indicies in a hash table. The problem is that the lexemes (provided below) must all hash …

0
80
Member Avatar for alex910TN

Hey guys, I have a general question about what is and what is not included in standard C? I have a project and the instructor says we can only use anything that was included in C99. Because I have a heay experience in C++, I often find myself questioning whether …

Member Avatar for deceptikon
0
222
Member Avatar for alex910TN

Hey guys, I have a silly issue that is bothering me. I am trying to read an unknown amount of lines from an input file and basically stop when I reach the EOF. I probably does'nt matter but the assignment is to create a simple lexical analyzer/scanner for a mini-subset …

Member Avatar for deceptikon
0
6K
Member Avatar for alex910TN

Hi guys. I am a student who really needs some assistance with creating a recursive function in C that changes multiple consecutive white spaces (blanks) from an array of characters into a single blank. For instance: char c [10]; // let ␢= blank symbol where the contents are :␢␢␢␢INT␢␢␢ the …

Member Avatar for deceptikon
0
2K
Member Avatar for alex910TN

> HI I was wondering if anyone knows where to find some credible information about Enterprise Agile methodology? The information should be acceptable for a senior-level research paper. The info. should answer the following questions if possible: 1. describe Enterprise Agile (XBreed) 2. give the history (with names and dates) …

0
51
Member Avatar for alex910TN

Hey guys I am trying to prompt the user to input a file name, and save that file name into a packed array of characters then use that inputed flename to perform some opertions. FileName : text; Line = PACKED ARRAY [0..79] of char ; writeln('Please input a file name …

Member Avatar for alex910TN
0
202
Member Avatar for alex910TN

Guys I have a quick general knowelege question. When defining a function in any programming langauge that will return a pointer to a linked list created in the function, can we return that pointer by reference? If so, can you provide me with a SIMPLE example of the following scenarios: …

Member Avatar for mrnutty
0
176
Member Avatar for alex910TN

I got another question. I am passing an array of characters to a function, but when i get into the function, before doing anything I want to make sure that the array was passed in correctly so I attempt to print the contents and it does nothing. So i assume …

Member Avatar for pritaeas
0
116
Member Avatar for alex910TN

Hey guys. I have the following loop structure condition statement: while ( ord(UpperCaseWords[i]) >= ord('A') and ord(UpperCaseWords[i]) <= ord('Z')) do Problem: When a compile, I get an error saying: "Error: Incompatible types: got "BOOLEAN" expected "LONGINT" " using Dev-Pascal 1.9.2. Description: UpperCaseWords = PACKED ARRAY of Characters that may contain …

Member Avatar for pritaeas
0
214

The End.