hey guys i am trying to understnad why i get an error when i run this code:
#include <stdio.h>
#include <stdlib.h>
struct otter{
int a;
int b;
struct inner *Objectin ;
}Objectout;
struct inner{
int c;
};
int main()
{
Objectout.a = 1;
Objectout.b = 2;
Objectout.Objectin->c = 3;
printf("%d %d %d\n",Objectout.a,Objectout.b,Objectout.Objectin->c);
return 0;
}
thank you so very much for any and all help 🙂
objectin doesnt exist
BinaryByter
Jonathan
Dima
𝓐𝓼𝓱𝔂
swarnim
klimi