I need to convert it from C to C++

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.5: Case Studies
Problem 7E: (File creation) Write a C++ program that creates an array containing the integer numbers 60, 40, 80,...
icon
Related questions
Question

I need to convert it from C to C++

if (number[i]>number[j])
{
// (*j< *i){
temp = number[i];
number[i] = number [j];
number[j] = temp;
}
}
}
printf("\n File after sorting descending is \n\n %s\n", number);
return 0;
}
Transcribed Image Text:if (number[i]>number[j]) { // (*j< *i){ temp = number[i]; number[i] = number [j]; number[j] = temp; } } } printf("\n File after sorting descending is \n\n %s\n", number); return 0; }
//sort datafile1 descending
#include <stdio.h>
#3include <stdlib.h>
#include <string.h>
int main()
{
char number[2000];
FILE *fptr;
if ((fptr = fopen("datafile1.txt","r")) == NULL)
{
printf("Error! opening file");
// Program exits if the file pointer returns NULL.
return(1);
}
if (fgets(number,2000,fptr) != NULL)
fclose(fptr);
char temp;
int i, j;
int n= strlen(number);
printf("\n File before sorting is \n\n %s \n", number);
for(i=0; i<n ; i++)
{
for(j=0; j<n; j++)
{
Transcribed Image Text://sort datafile1 descending #include <stdio.h> #3include <stdlib.h> #include <string.h> int main() { char number[2000]; FILE *fptr; if ((fptr = fopen("datafile1.txt","r")) == NULL) { printf("Error! opening file"); // Program exits if the file pointer returns NULL. return(1); } if (fgets(number,2000,fptr) != NULL) fclose(fptr); char temp; int i, j; int n= strlen(number); printf("\n File before sorting is \n\n %s \n", number); for(i=0; i<n ; i++) { for(j=0; j<n; j++) {
Expert Solution
steps

Step by step

Solved in 2 steps with 4 images

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT