Skip to main content
code Snippets

What will be the output of the following programs?????

//static var


1.int x = 10;
  static int y = x;


//infinite loop
  
2. for (i = 1; i != 10; i += 2)
  {
    printf(" hi ");
  }


3.int i = 20,j;

    i = (printf("Hello"), printf("dear... "));
    printf("%d", i);

Comments

Popular posts from this blog

Naming Convention

  Naming Convention : A naming convention is  a convention for naming things: Please find below the table for naming conventions: Naming Convention Format Example Camel Case camelCase 🐪aBcD Kebab Case kebab-case 🍢a-b-c-d Snake Case snake_case 🐍a_b_c_d Pascal Case PascalCase 🧑‍🦳AbCd Flat Case flatcase 📏abcd Upper Flat Case UPPERFLATCASE ABCD Screaming Snake Case SCREAMING_SNAKE_CASE 🐍A_B_C_D Camel Snake Case camel_Snake_Case 🐪🐍ab_Cd Pascal Snake Case Pascal_Snake_Case Ab_Cd Train Case Train-Case 🚃Ab-Cd Cobol Case COBOL-CASE 🍢AB-CD
IOT Internet of things. In this we can operate things automatically . ---> Like fans, lights, TV, Doors, taps, all things which we need to go and put on or off. IMP point:   IOT allows things to work as per logic . Main Problem (The overflow of bins in society or cities has following impacts) Bacteria, insects and vermin thrive from garbage Overflowing waste causes air pollution and respiratory diseases. Garbage contaminates surface waters, which affects all ecosystems.  Direct handling of overflowing waste exposes for health risks.  Inefficient waste control is bad for municipal wellbeing. Their is no one to say that bin is fully occupied or please through this garbage and empty her. So IOT provides us a new concept which take care of overflow of garbage in cities. As we know without garbage city will be neat and clean. An because of this peoples,animals will be safe from any diseases. How to prevent waste bins from overflowing? Althou...
This blog explains how to connect to the Oracle10g database in Java. (u can use netbeans as well then no need of classpath) Connect To Oracle10g database In Java There are 5 steps to create a connection with an Oracle10g database in Java. First register the driver class Create the connection Create a statement Execute queries Close the connection 1. First, register the driver class The class.forName() method of the class registers the driver class.  Syntax public static void forName(String classname) throws ClassNotFoundException Example Class.forName("oracle.jdbc. driver.OracleDriver"); 2. Create the connection object The getConnection() method of the DriverManager class establishes the connection with the Oracle database. Syntax public static Connection getConnection(String url) throws Exception public static Connection getConnetion(String name, String url, String password) Example Connection connection=DriverManager. getConnectio...