answersLogoWhite

0


Best Answer

A strtok is used as a search string in computing where it can find a variable that is typed after " " (add a space), and then return it as a string. It is part of the C++ programming technique.

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does 'strtok' mean in computing?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does computing mean?

The basic computing with the computer.


What does traditional computing mean?

The basic computing with the computer.


How do you isolate words in while reading a file in c?

You can use functions fgets and strtok.


What does cloud computing mean, and are the benefits of it greater than grid computing?

Cloud computing or grid computing depends on the task at hand. If you want to focus on a single enormous task, then go with grid computing. Cloud computing is more for multitasking.


What does the abbreviation OS mean in computing?

Operating system


What do you mean by computing concept?

"Computing concept" is a term that means an idea or principle that has been actualized by a computer or the software that runs on it.


Anyone knows a programming code to look for nth word in a string using string.h?

Function strtok can help you to separate the words.


What is cloud computing application?

Cloud computing application simply means the process in which a company utilizes the functions of cloud computing. This may mean more money and time saved if used correctly.


How many words can you find which relate to computing and what they mean?

26.


What does currency mean. computing?

Money in current use in a country


What does masquerading mean in computing?

to mimic someone who you arent really


How do you use the strtok function?

strtok sequentially truncate string if delimiter is found. If string is not NULL, the function scans string for the first occurrence of any character included in delimiters. If it is found, the function overwrites the delimiter in string by a null-character and returns a pointer to the token, i.e. the part of the scanned string previous to the delimiter. After a first call to strtok, the function may be called with NULL as string parameter, and it will follow by where the last call to strtok found a delimiter. delimiters may vary from a call to another. Parameters. string Null-terminated string to scan. separator Null-terminated string containing the separators. Return Value. A pointer to the last token found in string. NULL is returned when there are no more tokens to be found. Portability. Defined in ANSI-C.