Write a program which uses functions like strcmp(), strcpy()? etc
No Answer is Posted For this Question
Be the First to Post Answer
What is an operator in c++?
What problems might the following macro bring to the application?
What is the difference between global variables and static varables?
Do class declarations end with a semicolon? Do class method definitions?
List the special characteristics of constructor.
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Which software is best for c++ programming?
Write a program to concatenate two strings.
what is VOID?
What does obj stand for?
Explain the static storage classes in c++.
A milk carton can hold 3.78 litres of milk. Each morning, a dairy farm ships cartons of milk to a local grocery store. The cost of producing one litre of milk is $0.38, and the profit of each carton of milk is $0.27. Write a C++ program that prompts the user to enter the total amount of milk produced in the morning. Then display the number of milk cartons needed to hold milk, the cost of producing milk, and the profit for producing milk.