How to add code (java, c, c++) code into my page
I want to add the programs of different languages (C, C++, Java) into my website.
How do I achieve this?
For your reference., I want to add programs like to below to my website.
long b; // equivalent to long int b;
printf("Size of int = %zu bytes \n", sizeof(a));
printf("Size of long int = %zu bytes\n", sizeof(b));
return 0;
}