Temple Tokens/ Ram Tankas

Temple Tokens/Ram Tankas – Obverse

———————————————————————————————–
Temple Tokens/Ram Tankas – Reverse

Two varieties of Tokens shown above which displays Rama and Laxmana and Rama’s Coronation Ceremony

Stamps of Romania

SET -1 ROMANIA

SET -2 ROMANIA

SET -3 ROMANIA

SET -4 ROMANIA

Some File Handling Programes in C

1. Count Characters, spaces, tabs and lines in a filemain(){
FILE *fp; //a pointer to filechar ch;int nol=0,not=0,nos=0;nos=0;fp=fopen(“test.c”,”r”); //open file test.c in read only mode
while(1){ch=fgetc(fp); //read each character of file in ch using pointer file pointer fp
if(ch==EOF) //if end of file in reachedbreak;noc++; //count number of characters
if(ch==’ ‘) //if space is read into ch increase its [...]