Skip to content

Instantly share code, notes, and snippets.

@vineethm1627
Created March 6, 2021 14:50
Show Gist options
  • Save vineethm1627/c72ed87e2eb20e7a62dde439086bc32e to your computer and use it in GitHub Desktop.
Save vineethm1627/c72ed87e2eb20e7a62dde439086bc32e to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main()
{
char info[100];
char dept[ ] = "HR";
int emp = 75;
sprintf(info, "The %s dept has %d employees.", dept, emp);
printf("%s\n", info);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment