![zik.saleeba](/assets/img/avatar_default.png)
git-svn-id: http://picoc.googlecode.com/svn/trunk@598 21eae674-98b7-11dd-bd71-f92a316d2d60
25 lines
394 B
C
25 lines
394 B
C
// credits: CSmith, a random generator of C programs.
|
|
|
|
#include "stdio.h"
|
|
|
|
void func_1(void)
|
|
{
|
|
int x = 5;
|
|
int* px = &x;
|
|
int** ppx = &px;
|
|
int*** pppx = &ppx;
|
|
int a = - - x;
|
|
printf("a=%d\n", a);
|
|
int b = - - - x;
|
|
printf("b=%d\n", b);
|
|
int c = -***pppx;
|
|
printf("c=%d\n", c);
|
|
int d = - -****&pppx;
|
|
printf("d=%d\n", d);
|
|
}
|
|
|
|
void main()
|
|
{
|
|
func_1();
|
|
}
|