write a program that reads a series of strings and prints only
those strings begging with letter "b"
No Answer is Posted For this Question
Be the First to Post Answer
Show by induction that 2n > n2, for all n > 4.
2 Answers Karvy, Qatar University,
. Write a program using two-dimensional arrays that computes the sum of data in tows and the sum of data in columns of the 3x3 (three by three) array variable n[3][3].
Min-Max Write an algorithm that finds both the smallest and largest numbers in a list of n numbers and calculate its complexity T(n).
1 Answers Infosys, Qatar University,
Code for Small C++ Class to Transform Any Static Control into a Hyperlink Control?
Write code for the multiplication of COMPLEX numbers?
how to take time as input in the format (12:02:13) from user so that controls remains between these columns?
write a program that can LOCATE and INSERT elements in array using c++ programming languages.
Seat Reservation prog for the theatre. Write a function for seat allocation for the movie tickets. Total no of seats available are 200. 20 in each row. Each row is referred by the Character, "A" for the first row and 'J' for the last. And each seat in a row is represented by the no. 1-20. So seat in diffrent rows would be represented as A1,A2....;B1,B2.....;........J1,J2... Each cell in the table represent either 0 or 1. 0 rep would seat is available , 1 would represent seat is reserved. Booking should start from the last row (J) to the first row(A). At the max 20 seats can be booked at a time. if seats are available, then print all the seat nos like "B2" i.e (2 row, 3 col) otherwise Print "Seats are not available." and we must book consecutive seats only.
Write a function- oriented to convert the input dollar(s) into its equivalent peso. Assume that one dollar is equivalent to 51.60
develop a program to calculate and print body mass index for 200 employees
0 Answers Jomo Kenyatta University,
How do I store linked list datas into an array?
#include<iostream.h> //main() //{ class A { friend class B; public: void read(); }; class B { public : int a,b; }; void A::read() { cout<<"welcome"; } main() { A x; B y; y.read(); } In the above program......, as B is a friend of A B can have access to all members,i cant access y.read . could you please tell me the reason and what would i code to execute this program?