Assessment Brief School of Psychology and Computer Science UCLan Coursework Assessment Brief XXXXXXXXXX Module Title: Programming Module Code: CO1401 Level 4 Word Filter This assessment is worth 100%...

1 answer below »
included in file


Assessment Brief School of Psychology and Computer Science UCLan Coursework Assessment Brief 2020-2021 Module Title: Programming Module Code: CO1401 Level 4 Word Filter This assessment is worth 100% of the overall module mark THE BRIEF/INSTRUCTIONS This assignment was inspired by a report by the BBC about an “overzealous profanity checker’ on Virgin Media. Your assignment is to produce a program using C++ which will read in a list of banned words from a file, as well as an additional text file which will then be filtered using these banned words. The original BBC article can be found here: http://www.bbc.co.uk/news/technology-16255972 This is an individual project and no group work is permitted. You will be assessed on your implementation of the solution which must be produced using C++. Do not diverge from the assignment specification. If you do not conform to the assignment specification then you will lose marks. You may conduct your own research into topics which have not been explicitly taught within the module (this will be required for higher marks) however, you should include a justification for its use along side links to any sources in your program comments. Failure to do so may result in a plagiarism investigation. Only use concepts that you are confident you understand. Learning Outcomes This assessment has been designed to assess the following learning outcomes: · Apply the principles of programming. · Design an appropriate solution for a given problem. · Implement a readable and maintainable software solution of their own design. · Evaluate the quality of his or her developed software. Marking Scheme Use the marking criteria provided to guide your design for your solution. Please follow this carefully. Marking bands are indicative and can be overridden at the marker’s discretion with justification. Pass Criteria: · 10 marks: The files ‘banned.txt’ and ‘text1.txt’ are successfully read into the program. · 20 marks: Perform a comparison between the words from ‘banned.txt’ and the words from ‘text1.txt’. Hint: it will be easiest to read the banned words from the file into an array. You can then read the words from ‘text1.txt’ and compare them with the words in the array. · 10 marks: Display how many times each banned word has been found in ‘text1.txt’ on the screen. i.e. ‘dog’ found 0 times ‘cat’ found 3 times Continued on next page… 3rd Criteria: · Up to 10 marks will be given for following good programming practices: · Your code must be properly indented and laid out so that it is readable. · Brackets must line up (and should normally be on a line of their own). · Indentation must be consistent. · Appropriate use of white space should be made. · Over-long lines of code or comments should be split up. · You should have no ‘magic numbers’ but instead make proper use of constants. · Variable names should be meaningful and no excessively long. · Your code should be commented appropriated. 2:2 Criteria: · 3 marks: Filter the text from ‘text1.txt’ by comparing every word with the list of banned words. If you find any word from the banned list then you must replace it with *** (3 asterisks). · 2 marks: Write the filtered text to an output file: ‘text1Filtered.txt’. · 5 marks: Use functions to sperate your code into sensible, reusable parts. Comment these functions appropriately. 2:1 Criteria: · 5 marks: Read in ‘text2.txt’, ‘text3.txt’ and ‘text4.txt’. You should extend your text filtration to these files - this will be more difficult as they contain punctuation and upper case characters. Write your filtered text to separate output files so ‘text1.txt’ is written to ‘text1Filtered.txt’, ‘text2.txt’ is written to ‘text2Filtered.txt’ etc. · 3 marks: Filter all instances of the banned words, including instances where the banned word occurs inside another word, e.g. one of the banned words is ‘cat’ so ‘catalogue’ is banned because ‘cat’ occurs inside the word ‘catalogue’. For this level it is acceptable to replace the whole word (i.e. catalogue) with *** (3 asterisk). · 2 marks: Update your filtration function so it is able to handle both uppercase and lowercase letters. i.e. ‘Cat’ is banned as well as ‘cat’. 1st Criteria: · 5 marks: Replace all occurrences of banned word with the correct number of asterisk, e.g. "cat" becomes "***", whilst "classification" becomes "classifi***ion". · 3 marks: Display the 10 most frequent words from each file, and for all files combined on the screen. · 2 marks: Sort the top 10 words lists into alphabetical order High 1st Criteria: · 5 marks: Instead of replacing the whole of the banned words with asterisks you should only replace the middle character with an asterisk. i.e. end characters left unchanged, e.g.. "cat" becomes "c*t" whilst "classification" becomes "classific*tion". · 5 marks: Provide a comprehensive statistical analysis of each text file: · Frequency of each word. · Analysis of the word length (frequency of each word of a particular length and mean (average) length of the words). · Frequency count of each letter and the number of times each banned word was found, both as a whole and as a sub-string (within another word). · 5 marks: Sort all words from each text file into a single file called ‘sorted.txt’ · 5 marks: Add any extra features you wish – i.e. use of classes and/or vectors instead of arrays. PREPARATION FOR THE ASSESSMENT Before attempting this assessment, it is highly recommended that you revisit the "Four L's”: · Lectures – This includes the slides, notes and recording. · Lecture notes – Any notes you took during the lectures. · Lab worksheets – Read over all lab worksheets. · Lab projects – Ensure all projects have at least stage one implemented. Combined these provide all the necessary information for you to successfully complete this assessment. All resources are available on the CO1401 Blackboard area under Module Materials. RELEASE DATES AND HAND IN DEADLINE Assessment Release date: 22/02/2021
Answered 9 days AfterApr 13, 2021

Answer To: Assessment Brief School of Psychology and Computer Science UCLan Coursework Assessment Brief...

Aditya answered on Apr 23 2021
145 Votes
WordFilter/.vs/WordFilter/v16/.suo
WordFilter/.vs/WordFilter/v16/Browse.VC.db
WordFilter/.vs/WordFilter/v16/ipch/AutoPCH/fa693f7968836a80/WORDFILTER.ipch
WordFilter/banned.txt
cat
dog
aim
add
ear
back
punk
able
WordFilter/Debug/vc142.idb
WordFilter/Debug/vc142.pdb
WordFilter/Debug/WordFilter.exe
WordFilter/Debug/WordFilter.exe.recipe

D:\VisualStudioPrograms\WordFilter\Debug\WordFilter.exe



WordFilter/Debug/WordFilter.ilk
WordFilter/Debug/WordFilter.log
WordFilter.cpp
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(37,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(65,20): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(69,27): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(110,27): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(115,31): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(143,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudi
oPrograms\WordFilter\WordFilter.cpp(157,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(161,27): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(176,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(179,27): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(191,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(193,31): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(214,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(216,31): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(227,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(237,20): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(242,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(247,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(252,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(261,23): warning C4018: '<': signed/unsigned mismatch
D:\VisualStudioPrograms\WordFilter\WordFilter.cpp(263,31): warning C4018: '<': signed/unsigned mismatch
WordFilter.vcxproj -> D:\VisualStudioPrograms\WordFilter\Debug\WordFilter.exe
WordFilter/Debug/WordFilter.obj
WordFilter/Debug/WordFilter.pdb
WordFilter/Debug/WordFilter.tlog/CL.command.1.tlog
^D:\VISUALSTUDIOPROGRAMS\WORDFILTER\WORDFILTER.CPP
/c /ZI /JMC /nologo /W3 /WX- /diagnostics:column /sdl /Od /Oy- /D WIN32 /D _DEBUG /D _CONSOLE /D _UNICODE /D UNICODE /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /permissive- /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"DEBUG\\" /Fd"DEBUG\VC142.PDB" /Gd /TP /analyze- /FC D:\VISUALSTUDIOPROGRAMS\WORDFILTER\WORDFILTER.CPP
WordFilter/Debug/WordFilter.tlog/CL.read.1.tlog
^D:\VISUALSTUDIOPROGRAMS\WORDFILTER\WORDFILTER.CPP
C:\WINDOWS\GLOBALIZATION\SORTING\SORTDEFAULT.NLS
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\BIN\HOSTX86\X86\1033\CLUI.DLL
C:\WINDOWS\SYSTEM32\TZRES.DLL
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\IOSTREAM
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\YVALS_CORE.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\VCRUNTIME.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\SAL.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CONCURRENCYSAL.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\VADEFS.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XKEYCHECK.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\ISTREAM
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\OSTREAM
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\IOS
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XLOCNUM
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CLIMITS
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\LIMITS.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CMATH
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\YVALS.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CRTDBG.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\VCRUNTIME_NEW_DEBUG.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\VCRUNTIME_NEW.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CRTDEFS.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\USE_ANSI.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CSTDLIB
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MATH.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MATH.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDLIB.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MALLOC.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SEARCH.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDDEF.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDLIB.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XTR1COMMON
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CSTDIO
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STDIO.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTDIO.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_STDIO_CONFIG.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\ITERATOR
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\IOSFWD
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CSTRING
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\STRING.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMORY.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_MEMCPY_S.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\ERRNO.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\VCRUNTIME_STRING.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WSTRING.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CWCHAR
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\WCHAR.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCONIO.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WCTYPE.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WDIRECT.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WIO.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_SHARE.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WPROCESS.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_WTIME.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\STAT.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SYS\TYPES.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XSTDDEF
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CSTDDEF
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\INITIALIZER_LIST
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XUTILITY
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\UTILITY
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\TYPE_TRAITS
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\STREAMBUF
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XIOSBASE
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\SHARE.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\SYSTEM_ERROR
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\__MSVC_SYSTEM_ERROR_ABI.HPP
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CERRNO
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\STDEXCEPT
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\EXCEPTION
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\MALLOC.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\VCRUNTIME_EXCEPTION.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\EH.H
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\CORECRT_TERMINATE.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XSTRING
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XMEMORY
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CSTDINT
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\STDINT.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\LIMITS
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\CFLOAT
C:\PROGRAM FILES (X86)\WINDOWS KITS\10\INCLUDE\10.0.18362.0\UCRT\FLOAT.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\NEW
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\XATOMIC.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL STUDIO\2019\COMMUNITY\VC\TOOLS\MSVC\14.27.29110\INCLUDE\INTRIN0.H
C:\PROGRAM FILES (X86)\MICROSOFT VISUAL...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here