Home
User Guide
DB Recovery
Download
Documents
FAQ
Books
About Me
C Programs
Stats

/* Program# 57
   date : 28-12-2008
   Read & Display char until $ is given.
*/

#include 
main(){
char ch;
scanf("%c ",&ch); 
while(ch!='$'){
printf("\nGn char:%c",ch);
scanf("%c ",&ch);
}
}





Powered by
Open Source Programmers