You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
358 B
26 lines
358 B
/* a comment / */
|
|
/* "not a string" */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <signal.h>
|
|
#include <time.h>
|
|
#include <wchar.h>
|
|
|
|
/*
|
|
multiline comment
|
|
comment
|
|
*/
|
|
|
|
int main()
|
|
{
|
|
auto char* multi = "a multi"; /* and a comment !*/
|
|
}
|
|
|
|
/* A final comment for good measure /* /* /* */
|
|
|
|
|
|
|