News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

stdio.h and scanf_s

Started by caan, October 01, 2017, 06:03:31 AM

Previous topic - Next topic

caan

Hi
I have included stdio.h in the program but still I get a warning when using scanf_s or printf_s.
/Anders

frankie

You must enable extensions TR24731-1, C11 annex K before including stdio.h.
I.e.

#define __STDC_WANT_LIB_EXT1__ 1
#include <stdio.h>

.... //Your code
"It is better to be hated for what you are than to be loved for what you are not." - Andre Gide