#include"stdio.h"
#include"malloc.h"
void main()
{
int b;
const int c = 6;
int* f = &b;
f = &c;//error
int* const q = &b;
int* const p = &c; //error
int const* k = &c;
}

#include"stdio.h"
#include"malloc.h"
void main()
{
int b;
const int c = 6;
int* f = &b;
f = &c;//error
int* const q = &b;
int* const p = &c; //error
int const* k = &c;
}