. Remove all the blank spaces between
character.Matrix is of 10* 10.
eg: INPUT
------------------------------------
| N | A | | V | |T
-------------------------------------
| |G | U | |P |
--------------------------------------
|T | | | A | |
------------------------------------
OUTPUT:
------------------------------------
| N | A | V | T | |
-------------------------------------
|G |U | P | | |
--------------------------------------
|T | A | | | |
------------------------------------
Answer Posted / indrasen singh
follow these steps..
a) Create 10 by 10 matrix of char array and fill with '|'
b) Now in a loop check your first matrx whether it have alphabet character if found then insert it into the new matrix in the desired position....
char str1[10][10] // suppose it contains your data
char str2[10][10] //it store result
int i,j;
for(i=0;i<10;i++)
for(j=0;j<10;j++)
str2[j]='|';
int charfound;
for(i=0;i<10;i++)
{
charfound=0;
for(j=0;j<10;j++)
{
if(isalpha(str1[j]))
{
charfound++;
str2[((charfound*2)-1)]=str1[j];
}
}
}
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Code for Easily Using Hash Table?
write a program using virtual function to find the transposing of a square matrix?
Implement a command console for changing settings on a particular object. The command console should allow you to enter a string and will return the response (very similar to a terminal session). The commands are as follows: SET propertyname=newvalue will change the target object’s member named “propertyname” to have a value equal to “newvalue”. If the input value is incompatible (i.e. an int being set to a string), print out an appropriate error message. GET propertyname will print out the current value of the target object’s member named “propertyname”. GET * will print out a list of all target object members and their current values. The system should be extensible for future commands and should accept an arbitrary object, such that another developer could insert another object into the system and rely on the command console to get and set the properties correctly.
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
How to swap two ASCII numbers?
can you please write a program for deadlock that can detect deadlock and to prevent deadlock.
how to write a program that opens a file and display in reverse order?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used
Write a simple encryption program using string function which apply the substitution method.
How to Split Strings with Regex in Managed C++ Applications?
A suduco given & u hv 2 check if it is incomplete(blanks left),or correct or incorrect
create a stucture student containing field for roll no,class,year and marks.create 10 student annd store them in a file
What output does the following code generate? Why? What output does it generate if you make A::Foo() a pure virtual function? class A { A() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; class B : public A { B() { this->Foo(); } virtual void Foo() { cout << "A::Foo()" << endl; } }; int main(int, char**) { A objectA; B objectB; return 0; }
write a program that creates a sequenced array of numbers starting with 1 and alternately add 1 and then 2 to create the text number in the series , as shown below. 1,33,4,6,7,9,............147,148,150 Then , using a binary search , searches the array 100 times using randomly generated targets in the range of 1 to 150