puts() can display a string variable
#include <stdio.h> int main(){ char *name= "asdf"; puts(name); return(0); }
asdf