Is 'sizeof' a keyword?

Answer Posted / mohd amir

It is not a keyword

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can static method access instance variables ?

601


What are different types of encoding?

587


What is an exception in java?

648


Why there is no call by reference in java?

497


How many threads does a core java have?

513






What is the memory leak in java?

530


List down the methods and interfaces of collection class in java.

549


Explain method overloading?

573


Difference between keyword and identifier.

595


Is there any way to find whether software installed in the system is registered by just providing the .exe file? I have tried the following code but its just displaying the directory structure in the registry. Here the code : package com.msi.intaller; import java.util.Iterator; import ca.beq.util.win32.registry.RegistryKey; import ca.beq.util.win32.registry.RootKey; public class RegistryFinder { public static void main(String... args) throws Exception { RegistryKey.initialize(RegistryFinder.class.getResource("jRe gistryKey.dll").getFile()); RegistryKey key = new RegistryKey(RootKey.HKLM, "Software\\ODBC"); for (Iterator subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

1353


How many bytes is a char in java?

533


What are reference variables in java?

599


Why do I need to declare the type of a variable in java?

567


How do you find the independent variable?

519


Can we declare the main method of our class as private?

557