Search:

Type: Posts; User: xanli

Search: Search took 0.01 seconds.

  1. Need to know the difference in output on different machine..

    I have a small peice of code in C.
    Trying to analysis what would be the difference in the output if any if we use different machines for executing ex Intel and Linux.



    void loop() {
    int...
  2. please help mewith this concept of static scoping

    If i run the following code:

    x : integer := 4
    y : integer := 50
    procedure add()
    x := x + y
    procedure second(P : procedure)
    x : integer := 1
    P()
    ...
  3. typedef int * string; node * fun(int i); are...

    typedef int * string;
    node * fun(int i);

    are the only definition i can think off.

    Others are declarations.
  4. which one are declarations and which one are definitions

    Assume these statements are all outside of functions. Which of the following are declarations only and which are definitions:
    float * rate ;
    struct S ;
    static double pi;
    typedef int * string;...
Results 1 to 4 of 4