558 views
0 votes
0 votes
#include<Stdio.h>
main()
{
    int *a[10];
    *a[0]=323;
  printf("%d",*a);

}

// i m getting error what is error here ?

Please log in or register to answer this question.

Related questions

0 votes
0 votes
0 answers
1
Wanted asked Jan 18, 2017
270 views
https://gateoverflow.in/104305/is-thiz-valid-code?show=104658#c104658
0 votes
0 votes
1 answer
2
Wanted asked Jan 20, 2017
372 views
0 votes
0 votes
0 answers
3
Tejeshwara asked Jun 12, 2022
458 views
int main(int argc, char *argv[]) { int valid = 0; char str1[8] = "start"; char str2[8]; gets(str2); if (strncmp(str1, str2, 8) == 0) valid = 1; printf("buffer1: str1(%s),...
1 votes
1 votes
0 answers
4