Answer Posted /
| Is This Answer Correct ? | Yes | No |
Post New Answer View All Answers
What are the primary characteristics of the Teradata.
Find the area of the disc at 62 C whose diameter is 3?
Tell me how symbol is different from variables?
Why are so many drupal versions available - 4.x, 5.x .7.x.? Which one should I use?
How do we configure init params for jsp?
What is conio h in c?
What Is Swapping?
How to submit a jcl from cics?
How to use "if" statements on multiple conditions?
What can be the reasons for bleeding between the menstrual cycle? How would you assess such cases?
package MYCALC; use Exporter; our @EXPORT = (); our @ISA = qw(Exporter); our @EXPORT_OK = qw(addition multi); our %EXPORT_TAGS = (DEFAULT => [qw(&addition)],Both => [qw(&addition & +multi)]); sub addition { return $_[0] + $_[1]; } sub multi { return $_[0] * $_[1]; } 1; Program: use strict; use warnings; my @list = qw (2 2); use Module qw(:DEFAULT); print addition(@list),"\n"; Above coding is my module MYCALC and the program which using this module, I have not exported any function using @EXPORT, but I have used the DEFAULT in %EXPORT_TAGS with the function addition, when I call this function from the main it says the error as,
How can we delete the first node from the singly linked list?
What is sql deadlock?
how to create multithreaded program? : Java thread
Why does sql need a server?