what is the header file used sprintf in c?
kanchan setia
Select an image from your device to upload
#include <stdio.h> int main(void){ char str[80]; sprintf(str,"%s %d %c", "one", 2, '3'); printf("%s", str); }
O/P:one 2 3