please help
-
is there any diffrence between procedure and function?
Soniagupta1@yahoo.co.in Yahoo Messenger Id = soniagupta1
-
is there any diffrence between procedure and function?
Soniagupta1@yahoo.co.in Yahoo Messenger Id = soniagupta1
-
is there any diffrence between procedure and function?
Soniagupta1@yahoo.co.in Yahoo Messenger Id = soniagupta1
-
u mean procedure and sub are synonyms?
Soniagupta1@yahoo.co.in Yahoo Messenger Id = soniagupta1
-
u mean procedure and sub are synonyms?
Soniagupta1@yahoo.co.in Yahoo Messenger Id = soniagupta1
-
Yeap, Procedures executes the commands and returns nothing, on the other hand, function should always return something(integer or string, etc), to the point that they were called from.
better to say is that as we have "void" return type of a function i.e. a function that doesn't return a value in many languages like C++, C# or Java in visual basic we have sub for this purpose. i.e. sub is a function with void void return type :)
Salman Sheikh