Reputation: 961
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
Reputation: 84151
Use strlen(3)
. Was there a question about malloc(3)
too?
Upvotes: 2