15 lines
184 B
C++
15 lines
184 B
C++
![]() |
/*
|
||
|
Rafay Ahmad
|
||
|
23I-2526
|
||
|
*/
|
||
|
#include <iostream>
|
||
|
#include "util.h"
|
||
|
using namespace std;
|
||
|
|
||
|
int main(){
|
||
|
|
||
|
float *color = colors[GRAY];
|
||
|
cout<<(color == colors[GRAY]);
|
||
|
|
||
|
return 0;
|
||
|
}
|