How can i watch global pointer variable root in Visual Studio Code?
Here is the sample:
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
#include "pch.h"
#include <iostream>
struct node
{
int data;
struct node *link;
};
struct node *root;