Update blackclass.cpp

This will make you the  use of the graphics including size
This commit is contained in:
NishantRaizada-wq 2021-02-25 11:31:14 +05:30 committed by GitHub
parent 9920450b37
commit 799cc52db8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,12 +7,13 @@
*/ */
#include<iostream> #include<iostream>
#include<bits/stdc++.h>
using namespace std; using namespace std;
#include<graphics.h> // use size in graphics also
class A{}; class A{};
int main() int main()
{ {
cout<<sizeof(A)<<endl; cout<<sizeof(A)<<endl;
cout<<sizeof
return 0; return 0;
} }