Stdio h C Tutorial

puts() can display a string variable

#include 
 
int main(){
    char *name= "asdf";
 
    puts(name);
    return(0);
}
asdf