C++: Print a string using printf (stdio.h)


In order to print a string in C++ using the printf from the stdio.h library use it as follows:

string Phrase = "Hello!!";
printf("Phrase: %s\n",phrase.c_str());

 

This post is also available in: Αγγλικα

Απάντηση

Αυτός ο ιστότοπος χρησιμοποιεί το Akismet για να μειώσει τα ανεπιθύμητα σχόλια. Μάθετε πώς υφίστανται επεξεργασία τα δεδομένα των σχολίων σας.