आप एक गैर-आरंभिक सूचक में उपयोगकर्ता इनपुट नहीं पढ़ सकते हैं। इसके बजाय, संरचना डेटा प्रकार का एक चर है और इसके आंतरिक तत्वों तक पहुँचने से पहले इसका पता पॉइंटर को असाइन करें → ऑपरेटर
उदाहरण
#include <stdio.h> struct example{ char name[20]; }; main(){ struct example *ptr; struct example e; puts("enter name"); gets(e.name); ptr=&e; puts(ptr->name); }
आउटपुट
उपरोक्त कोड का विशिष्ट परिणाम
enter name Disha You entered Disha