in programming languages a statement or part of a statement that specifies several different execution sequences
a) constructs
b) distructs
c) executes
d) none
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
To what value are pointers initialized? 1) NULL 2) Newly allocated memory 3) No action is taken by the compiler to initialize pointers.
How do I convert a string to all upper or lower case?
How is = symbol different from == symbol in c programming?
What are the advantages of using Unions?
Find the highest of three numbers and print them using ascending orders?
will u give me old quesrion papers for aptitude for L & t info tech?
What is huge pointer in c?
ATM machine and railway reservation class/object diagram
Write a program for Overriding.
Define Spanning-Tree Protocol (STP)
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.