I came across this a few days ago.what i want to know is how to print the content of a C program as its output.consider the following small c code snipet:
#include<stdio.h>
#include<conio.h>
void main()
{
int a;
int b;
int sum;
}
how to modify the above code so that on executing it displays the same content of the code: the output should be:
#include<stdio.h>
#include<conio.h>
void main()
{
int a;
int b;
int sum;
}
I hope my question is not doubtful.