Write a program which uses functions like strcmp(), strcpy()? etc


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is an operator in c++?

0 Answers  


What problems might the following macro bring to the application?

0 Answers  


What is the difference between global variables and static varables?

0 Answers  


Do class declarations end with a semicolon? Do class method definitions?

0 Answers  


List the special characteristics of constructor.

0 Answers  






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"?

6 Answers   CSC,


Which software is best for c++ programming?

0 Answers  


Write a program to concatenate two strings.

0 Answers  


what is VOID?

0 Answers  


What does obj stand for?

0 Answers  


Explain the static storage classes in c++.

0 Answers  


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.

2 Answers  


Categories