C एवं C++
प्रोगा्रमिग भाषा में
Void शब्द का प्रयोग फंक्सनों के साथ किया जाता है। यह दर्षाता है कि फंक्सन
कोई भी मान नहीं लौटाता है। return स्टेटमेंट एवं Void
स्टेटमेंट दोनो एक साथ प्रयोग नहीं किया जाता है । Void
शब्द को शाब्दिक अर्थ
‘‘रिक्त’’
होता है।
उदाः
1)
void
main()
{
-----
-----
}
2)
int main()
{
-----
-----
return 6;
}
3)
int main(void)
{
-----
-----
return 105;
return 105;
}
void शब्द का
प्रयोग यूजर के द्वारा बनाये गये फंक्सनों
के साथ भी किया जाता है।
4)
void additon()
{
-----
-----
}
It is very helpful for students to understand the actual meaning of VOID. Please post about other basic terms used in c language like: scanf,printf,getch,etc...
ReplyDeletethank you sir that is quite helpful.
ReplyDeletevery nice post. easy to understand.
ReplyDelete