Explain working of printf?

Answer Posted / karan sahu

printf is a library function which printed formatted output....

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What operators can you overload in c++?

765


If I is an integer variable, which is faster ++i or i++?

791


Can static member variables be private?

836


What does iomanip mean in c++?

852


can any one help to find a specific string between html tags which is changed to a sting.. weather.html looks (for location) is somewhere #include #include #include using namespace std; string find_field(string myPage,string); int main (void) { string page, line, location, temperature; ifstream inputFile("weather.xml"); while(getline(inputFile, line)) { page.append(line); line.erase(); } // Now page is a string that contains the whole xml page // Here you need to write something that finds and // extracts location and temperature from the XML // data in the string page and stores them in // the strings location and temperature respectively location=find_field(page,"location"); temperature=find_field(page,"temp_c"); cout << "Location: "<

1838


How much do coding jobs pay?

751


What is algorithm in c++ programming?

782


What is low level language in simple words?

789


Explain how would you handle a situation where you cannot call the destructor of a local explicitly?

721


total amount of milk produced each morning and then calculates and outputs the number of cartons needed for this milk , the cost of producing the milk and the profit from producing this milk.

2285


Mention the storage classes in c++.

829


Why can templates only be implemented in the header file?

861


How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?

761


What is the function to call to turn an ascii string into a long?

814


How long will it take to learn programming?

785