Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

ONLY USE C LANGUAGE???? NOT C++ or Other Language Let's make our own simple twitter... A tweet is a special object that is the fundamental

ONLY USE C LANGUAGE????
NOT C++ or Other Language image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
Let's make our own simple twitter... A "tweet" is a special object that is the fundamental building block of Twitter If you are curious about the composition of a tweet you can familiarize yourself with the developer pages available here: https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object You can see that the tweet is quite a complex object, which is why we would focus instead on a much simpler version called "Simple Tweet". It is a good start for us to create a simple twitter application. A simple tweet will be composed of the following int; which uniquely identifies the simple tweet charl51]; that would store the UTC time and date. Note that UTC is the coordinated universal time, which is a common standard on the Internet. char[141];allow up to 140 characters. char[21]; the user name of the person who posted the tweet id created_at text user You are asked to create a structure definition for a simple tweet called "tweet". You will then need to create a simple application with the following menu functionality: 1. 2. 3. 4. 5. 6. Create a new tweet Search tweets Display tweets Save tweets to file Load tweets from file Exit When the user first starts the program he/she is prompted to enter his/her user name The menu is then displayed 1. Create a new tweet This option will automatically generate the next highest value for an id, the locate date/time for the created at in UTC, and prompt the user for the tweet's text. The new record is stored at the next available location in the array. If the array has reached capacity then no new records may be added 2. Search tweets This option will search all tweets' text for occurrences of a certain keyword string entered form the user It will search the text of each tweet, then display all the tweets that contained this keyword. 3. Display tweets This option will display to the console screen all the tweets

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Design Application Development And Administration

Authors: Michael V. Mannino

3rd Edition

0071107010, 978-0071107013

More Books

Students also viewed these Databases questions

Question

What is ultrasound?

Answered: 1 week ago

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago

Question

2. Discuss the types of messages that are communicated nonverbally.

Answered: 1 week ago