#include<iostream>
#include<iomanip>
using namespace std;
int main(){
float **A;
int m,n;
}
This program is incomplete . I just want to know what's the meaning and use of float **A
. Can anyone tell me.
#include<iostream>
#include<iomanip>
using namespace std;
int main(){
float **A;
int m,n;
}
This program is incomplete . I just want to know what's the meaning and use of float **A
. Can anyone tell me.