How to add two numbers without using semicolon n c????

Answer Posted / guest

int main()
{

return(5+6);
}

Is This Answer Correct ?    7 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what are global variables and explain how do you declare them?

645


The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference

677


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

693


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

766


Explain why can’t constant values be used to define an array’s initial size?

858






What is scope rule of function in c?

554


If errno contains a nonzero number, is there an error?

809


Why do we need arrays in c?

589


What is call by reference in functions?

573


What does typeof return in c?

640


All technical questions

1514


Explain how do you declare an array that will hold more than 64kb of data?

906


Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?

585


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

817


Explain spaghetti programming?

684