What does printf return?

后端 未结 4 1202
别那么骄傲
别那么骄傲 2020-12-01 21:18

Today in my interview, the interviewer asked: printf is a function and every function returns something; int, void, float, etc. Now what does printf return as it\'s a funct

4条回答
  •  爱一瞬间的悲伤
    2020-12-01 21:41

    Not every function returns something, which is indicated by using void:

    void function_returns_nothing(void);
    

    printf is a function (declared in ) and it returns an int, which is the number of characters outputted. If an error occurs, the number is negative.

提交回复
热议问题