Code Zone

(Code Zone) Validate Email Address in C

Validate Email Address in C

 

(comp.lang.c++) Amazing C++ Discussion Group @ Google Groups

have a look at one of the oldest C, C++ group over internet. Group is active since 1986 and has more than 2 Lacs threads and very high activity.

i hope it will help you all...


http://groups.google.com/group/comp.lang.c++/topics

Group RSS Feeds:
http://groups.google.com/group/comp.lang.c++/feeds

(Download) A Flash-based audio-visual seminar - Thinking in C

A Flash-based audio-visual seminar to introduce you to the fundamentals of the C language which will help you move on to C-based languages like C++, Java and C#. This seminar was formerly delivered on the CD-ROM bound into the 2nd and 3rd editions of Thinking in Java, and the 2nd edition, Volume 1 of Thinking in C++.

This is the release candidate and will be the final version unless bugs are discovered. This also tests the new download server configuration.

This version makes some small changes to simplify and improve usability.

Demonstration to uncomment the C program.

Demonstration to uncomment the “C” program.

#include 
main (int argc, char *argv[] )
{
	int i = 1 , flag = 0 , quote = 0;
	char buf[100][80];
	int printflag = 1, end_cmt = 0 ,begin_cmt = 1 ;
	if ( argc != 3 )
	{
		fprintf ( stderr ," Usage : a.out  \n" );
		exit (0 );
	}
	FILE *fp ;	
	int line = 0, index = 0 ;
	if ( (fp = fopen ( argv[1] , "r" )) == NULL )
	{
		fprintf ( stderr ,"File not found\n");
		exit ( 1);
	}
	while ( i )
	{
		i = fgetc ( fp );
		if ( i == EOF )
			break;
		buf[line][index] = i ;
		index++;
  

Google