[ create a new paste ] login | about

Link: http://codepad.org/NcaZFqdu    [ raw code | output | fork ]

C, pasted on Jan 9:
1
2
3
4
5
6
7
8
9
10
11
12
#include<stdio.h>

char *data[]={
"gfd","gfh","ser","oio"
};

main()
{
int n;
n=sizeof(deta);
printf("%d",n);
}


Output:
1
2
3
4
In function 'main':
Line 10: error: 'deta' undeclared (first use in this function)
Line 10: error: (Each undeclared identifier is reported only once
Line 10: error: for each function it appears in.)


Create a new paste based on this one


Comments: