Merge pull request #122 from NishantRaizada-wq/master

Update blackclass.cpp
This commit is contained in:
Francis 2022-04-10 16:46:47 +08:00 committed by GitHub
commit 3901772710
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;
} }