What is ctype.h and studio.h used for in c++? Also, what does strcat actually mean?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

What is ctype.h and studio.h used for in c++? Also, what does strcat actually mean??

just some basics

15th Jan 2017, 6:30 PM
Indraneel Maiti
Indraneel Maiti - avatar
5 Answers
+ 2
only for gets ??
15th Jan 2017, 7:03 PM
Indraneel Maiti
Indraneel Maiti - avatar
+ 2
stdio.h or cstdio is used for a faster way of reading the user input,such as printf and scanf ctype.h or cctype is a library that has some very useful functions for working with strings like isnum(char str) that verifies if a string is a number or not. strcat is used for joining string also try to view the c++ refference
15th Jan 2017, 7:27 PM
Mihai Dancaescu
Mihai Dancaescu - avatar
+ 2
thank you
15th Jan 2017, 7:31 PM
Indraneel Maiti
Indraneel Maiti - avatar
+ 1
strcat is used to join different strings
15th Jan 2017, 6:46 PM
Vaibhav Gangian
Vaibhav Gangian - avatar
0
stdio is used when gets is used in c++ coding for reading string
15th Jan 2017, 6:45 PM
Vaibhav Gangian
Vaibhav Gangian - avatar