1.

How to sort array in descending order in c programming​

Answer»

Copyfile.java

import java.io.*;

import java.util.*;

class Copyfile {

PUBLIC static void main(String arg[]) throws Exception {

Scanner sc = NEW Scanner(System.in);

System.out.print("PROVIDE source FILE name :");

String sfile = sc.next();

System.out.print("Provide DESTINATION file name :");



Discussion

No Comment Found