kanchan setia
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
#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