diff options
| author | Aditya Naik | 2019-03-02 04:38:17 -0500 |
|---|---|---|
| committer | Aditya Naik | 2019-03-02 04:38:17 -0500 |
| commit | e5ecb183fa1df79ae76086d81780c66cdd9d69b7 (patch) | |
| tree | 314fb1d71a9d95c98022bdfb526d97022ec75281 /924 | |
| parent | 098415483c31f06faa04200c08a7112c28c6c0ec (diff) | |
Starting 924
Diffstat (limited to '924')
| -rw-r--r-- | 924/news.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/924/news.cpp b/924/news.cpp new file mode 100644 index 0000000..e48d241 --- /dev/null +++ b/924/news.cpp @@ -0,0 +1,14 @@ +#include <iostream> +#include <vector> +#include <queue> +using namespace std; + +int main(){ + int num_emps; + cin>>num_emps; + int *adj[num_emps]; + + for(int i=0; i<num_emps; i++){ + arr[i] = (int*)malloc(num_emps*sizeof(int)); + } +} |
