C++ :: Reverse The Output From A Pointer?

Feb 27, 2012

Write a C program to read the list from the file and store them in the arrays. Your program should write the list of client's account number, client's name and the client's balance to another file called "newdata.txt" in reversed order and also display them on the screen.

An example of output dialog is shown below

Account Name Balance
800 Stacy 100.10
700 Michael 81.05
600 Dale 1005.30
500 Richard 214.89
400 Stone -45.23
300 White 0.00
200 John 345.67
100 Jones 24.50
--------

This is what I have done so far bellow here....But the only missing part is the reversed order of 'newdata.txt'contents.

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main() {
FILE *ifpt,*ofpt;

[code]....

View 1 Replies


ADVERTISEMENT

C++ :: Make Output Print Out To Screen In Reverse?

May 26, 2013

How can I make the output print out to the screen in reverse?

Code: #include <iostream>
#include <iomanip>
using namespace std;
int getnum();
void Fibonacci(int n);

[Code].....

View 7 Replies View Related

C++ :: Input Sentence And Then Output It In Reverse Order

Jun 3, 2013

I need to do program where i will input sentence and then output it in reverse order. Example: today is Monday ----> Monday is today. So I have this:

#include <iostream>
#include <cstring>
using namespace std;
int main() {
char niz[20],niz2[20];
int lenght,k=0;

[Code] ....

For output I only get one word of sentence,example: Monday is today--->today and nothing else.

View 5 Replies View Related

C :: How To Print Out Output String For A Program In Reverse / Backwards

Feb 20, 2013

How to make it so an output for a program would print out the string in reverse/backwards? I was just curious on how to do this.

View 6 Replies View Related

C++ :: Output Sorting Error Using Pointer Notation

Aug 6, 2012

My code compiled well(After long Messing up with my head). But, i still not satisfied of my output as i expected. My code ought to sort the object of person comparing their salary. But, its not.

Code:
#include <iostream>
#include <string>
using namespace std;
class person {
protected :
string name;
float salary;

[Code] ....

It doesn't sort the object of class person rather than it prints out the stored value as it is.

View 3 Replies View Related

C++ :: Passing A File Pointer To A Function Is Producing Undesired Output

Oct 27, 2013

I am working on a project and decided to try something simple before I start adding items. I am calling a function from main and that function has a file pointer.

Here is my main.cpp

Code: #include <cstdio>
#include <string>
#include <iostream>
#include "main.h"
extern FILE *fp;
using namespace std;
int main(int argc, char *argv[])

[code]....

Here is the function:

Code:
#include <string>
#include <cstdio>
#include <iostream>
#include "main.h"

[Code] ....

My test file consists of several characters and digits. Nothing special and I at this point in time do not have any type of formatting that needs to be adhered to. I am simply wanting to read the file character by character and print it out. When I run the program, I get this symbol:

Code: If I use a printf statement, such as:
Code: printf("%s
", nextChar);

I get a segmentation fault.

My main.h Code:

#ifndef MAIN_H
#define MAIN_H
void scanner(FILE *);
//char getChar(FILE *);
#endif and lastly my scanner.h Code: #ifndef SCANNER_H
#define SCANNER_H
FILE *fp;
#endif

View 6 Replies View Related

C++ :: How To Reverse Bit - 1 To 0 And 0 To 1

Apr 6, 2014

How can I reverse/toggle bit like 1 to 0 and conversely, 0 to 1?

For instance: 01000100 ('D' 68) to 10111011 ('╗' 187).

Is there any way easier and more simple than:

1. Convert char/string to binary.
2. Toggle bits.
3. Convert binary back to char/string.

View 1 Replies View Related

C++ :: Reverse Of A String

Dec 22, 2013

If I am executing following code after reversing it is giving "1" but I need "0001".

#include <stdio.h>
int main() {
int n=1000, reverse = 0;
while (n != 0) {
reverse = reverse * 10;

[Code] .....

View 11 Replies View Related

C++ :: How To Reverse A List

Apr 10, 2013

I would like to add a new function to my class, "reverse" that would reverse the order of the list. I have added a prototype in the "public:" section of the code (see the comment with PROTOTYPE in it). Your task is to complete the implementation (see the comment with IMPLEMENTATION in it. See the main() function to see how the results should look

#include
#include
using namespace std;
class List {
public:
// Constructs an empty list
List();

[Code]....

I cant seem to get the right function to put into reverse I have tried everything Im not sure where to start!

View 4 Replies View Related

C/C++ :: Reverse Of A Number?

Mar 28, 2014

I have written a code to find reverse of a number and print if if the original and reversed numbers are equal or not .the problem is in the if condition where the first printf is not working at all. the code is

#include <stdio.h>
#include <conio.h>
int main (void)
{

[Code]....

as if i enter 121 it still shows the 2nd printf instead of 1st one. sort out the bug;;!

View 4 Replies View Related

C++ :: Reverse A String In Place

Jan 12, 2014

I was browsing the web looking for simple yet fun programming challenges and crossed this one. I figured out how to reverse the string in place but I want it to read "blue is house the". I approached it in two ways for the heck of it. My idea was the second one, the first one I googled. I didn't know a simple rbegin() could do that, pretty neat.

I found the question here.[URL] ....

Code:
#include <iostream>
#include <string>
int main(int argc, const char * argv[])
{
std::string phrase = "The house is blue.";

[Code] ......

View 8 Replies View Related

C++ :: Why Are Destructors Called In Reverse

May 15, 2013

"Destructors for a derived class object are called in the reverse order of the constructors for the object. This is a general rule that always applies. Constructors are invoked starting with the base class constructor and then the derived class constructor, whereas the destructor for the derived class is called first when an object is destroyed, followed by the base class destructor."

But why, or is it just because, so programmers know which one and modify their destructor accordingly??

View 19 Replies View Related

C++ :: Reverse Elements Of Array

Apr 11, 2014

I am trying to write a program that reverses the elements of an array by using an function 'myreverse'. The function should reverse original array and return nothing.

In my program, the function 'myreverse' is not getting invoked and the original array is being displayed as it is.

#include <iostream>
using namespace std;
void myreverse(int arr[],int n) {
int *p=&arr[n-1];
int temp;
for(int i=0;i<n;++i)

[Code] .....

View 5 Replies View Related

C++ :: Reverse Words In A Sentence

May 21, 2014

I am trying to write a program in which i enter sentences and then gives the reversed output

E.g.: -

INPUT
Enter the number of sentences
3

This is a sentence
Program
You are great

OUTPUT

sentence a is This
Program
great are You

I wrote the following code but its failing when im trying to enter a sentence

#include <iostream>
#include <conio.h>
#include <string>
using namespace std;
void str(char*, int);
void main() {
char *word[25];

[Code] ....

View 7 Replies View Related

C++ :: Printing Name In Reverse Using Pointers

Jan 25, 2015

There is alien code.

#include <iostream.h>
#include <conio.h>
#include <math.h>
#include <stdio.h>

using namespace std;
char printReverse(char*);

[Code] ....

View 5 Replies View Related

C++ :: How To Reverse Bits For A Number

Sep 3, 2013

I am working on a project where I need to reverse bits for a number.

For example, if I have 110111100000000 I need to reverse it to 0000000001111011.

View 19 Replies View Related

C/C++ :: Reverse String Using Stacks?

Oct 29, 2014

As part of my hw assignment i need to reverse a string using stacks. This is my attempt and so far its not working.

// reverse.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"

[Code].....

View 3 Replies View Related

C++ :: How To Reverse A Text File

Dec 26, 2013

If we have a text file containing the string: abc, how to reverse it to be cba using file open modes (ios::app, ios::ate, ios::binary, ios::trunc, ios::in and ios::out)?

View 19 Replies View Related

C# :: Reverse Chars Of String

Aug 7, 2014

I have a problem with my code. I just have to reverse the chars of a string, but it adds a /n that I can't delete.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ch05Ex05._5 {

[Code] ....

View 5 Replies View Related

C/C++ :: Program To Reverse Sentence

May 31, 2014

I have to write a program to reverse a sentence like

cat
tac

But my program is case sensitive. Like if i enter sentence it gives me ecntenes(which is wrong). How to make it non case-sensitive using vectors?

// BackWardsSentence.cpp : Defines the entry point for the console application. //

#include "stdafx.h"
#include <iostream>
#include <sstream>
#include <string>
using namespace std;
string BackWords (string sentence);

[Code] ......

View 3 Replies View Related

C/C++ :: How To Reverse Diagonals In 2D Array

Jan 9, 2013

I have been trying this for so long. I need to make a separate function named reverseDiagonal where I have to reverse the diagonals in a 2D array.. I have tried swapping it but i don't know where to place the "cout" and print the diagonal.

View 4 Replies View Related

C++ :: Linked List Node Passed As Parameter / Argument Pointer To Pointer Notation

Jan 17, 2014

I was having problems changing the value of my head node I passed it as an argument as head which would be the address. The parameter was defined as struct node *head. like this

bool deleteNode(struct node *head, struct node *delptr)

I tried manipultaing pointer values to change head node value but it did not work. I saw some code online which used pointer to pointers(in code below) to change head node value it worked I dont fully understand why. Would like better understanding of why.

Would also like to know why the argument call needed &head instead of just head.

remove = deleteNode(&head,found); opposed to remove = deleteNode(head,found);

#include "stdafx.h"
#include<iostream>
struct node{

[Code].....

View 1 Replies View Related

C++ :: Calling Defined Function Pointer From Another Pointer To Class Object?

Aug 19, 2014

I am attempting to implement function pointers and I am having a bit of a problem.

See the code example below; what I want to be able to do is call a function pointer from another pointer.

I'll admit that I may not be explaining this 100% correct but I am trying to implement the code inside the main function below.

class MainObject;
class SecondaryObject;
class SecondaryObject {
public:

[Code]....

View 10 Replies View Related

C :: Reverse The Words In Sentence Program

Feb 5, 2013

Im writing a c program that reverses the words in a sentence,

Example:
you can cage a swallow can't you?
you can't swallow a cage can you?

I have it all working, except the fact that I dont know how to get the words themselves to turn around. Heres my code and an example of the output im getting.

Output Im getting:

Enter a sentence: you can cage a swallow can't you?
Reverse of sentence: uoy t'nac wollaws a egac nac uoy?

Code:
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#define MAX 200 /*Decent number of chars for a sentence*/
int main()

[Code] ....

View 2 Replies View Related

C :: Reverse A String - Function Is Not Getting Called

Aug 29, 2013

I am new to C and trying to reverse a string but the function is not getting called.. the console says :

Enter a stringabhi
bash: line 1: 229 Segmentation fault (core dumped) ./program

Code:
#include<stdio.h>
#include<math.h>
#include<string.h>
char* reverseString(char input[]);
void main()

[Code] ....

View 6 Replies View Related

C :: How To Reverse Unidirectional Linked List

Sep 12, 2014

I was assigned to reverse a unidirectional linked list in C, where I'm not allowed to make a copy of the given linked list, or to change the actual data.

The only thing I'm allowed to do is to manipulate the list's pointers. After doing some thinking and scribbling on a piece of paper, I came up with this:

Initialize three pointers: p1,p2,p3, for the first, second and third elements, respectively.
p1->next=NULLwhile (p3 != NULL) do p2->next=p1p1=p2p2=p3p3=p3->nextp2->next=p1return p2
as the head of the reversed list

This is a pseudo code, of course, as I'm less interested in the actual implementation, and more about the algorithm itself. I was wondering if there's a more elegant way of doing this, since this gets quite complicated considering the cases where the list has less than three elements in it.

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved