28 lines
481 B
C++
28 lines
481 B
C++
|
/*
|
||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/cppFiles/main.cc to edit this template
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* File: main.cpp
|
||
|
* Author: caleb
|
||
|
*
|
||
|
* Created on March 4, 2024, 11:07 AM
|
||
|
*/
|
||
|
|
||
|
#include <cstdlib>
|
||
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
#include "pointers1.h"
|
||
|
|
||
|
/*
|
||
|
*
|
||
|
*/
|
||
|
int main(int argc, char** argv) {
|
||
|
dereferencePointer();
|
||
|
if (p == nullptr)
|
||
|
return 0;
|
||
|
}
|
||
|
|