learner123
learner123

Reputation: 961

fgets malloc c help

if i have a variable from fgets

for example fgets(question,200,stdin); how do i determine the size of the variable question without all the trailing blank elemets?

Upvotes: 1

Views: 514

Answers (1)

Nikolai Fetissov
Nikolai Fetissov

Reputation: 84151

Use strlen(3). Was there a question about malloc(3) too?

Upvotes: 2

Related Questions