Shantanu Banerjee

less info
177 reputation
5
bio website
location Kolkata, India
age 24
visits member for 6 months
seen May 2 at 7:10
stats profile views 7

*** Main Functions ***


C and C++

int main(void);
int main();

int main(int argc, char **argv);
int main(int argc, char *argv[]);
int main(int argc, char **argv, char **envp);

JAVA

public static void main(String[] args)
public static void main(String... args)
public static void main(String args[])

PYTHON

def main():
# the main code goes here

if __name__ == "__main__":
main()

PIKE

int main(int argc, array(string) argv)

SCALA

def main(args:Array[String])

RUBY

self # => main
self.class # => Object
self.class.ancestors # => [Object, Kernel]


Nov
20
accepted Why is rcS required after file system is mounted by the kernel?
Nov
20
comment Why is rcS required after file system is mounted by the kernel?
great, Its very helpful to me ... Thanks @Gilles
Nov
19
awarded  Editor
Nov
19
revised Why is rcS required after file system is mounted by the kernel?
imporved
Nov
19
asked Why is rcS required after file system is mounted by the kernel?
Nov
5
awarded  Student
Nov
5
comment Partitioning disk image file
thank you... good explanation ...
Nov
5
awarded  Scholar
Nov
5
comment Partitioning disk image file
perfectly worked for me.. thanks
Nov
5
accepted Partitioning disk image file
Nov
5
asked Partitioning disk image file