a=5
a=a++/++a

Answer Posted / ravi

a=5/7
a=0;

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What would happen to X in this expression: X += 15; (assuming the value of X is 5)

1306


Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record

4743


What is a structure and why it is used?

621


What is "Hungarian Notation"?

638


Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

618






What is the 'named constructor idiom'?

640


What is spaghetti programming?

671


List out few of the applications that make use of Multilinked Structures?

1307


Is there any possibility to create customized header file with c programming language?

627


How can I list all of the predefined identifiers?

582


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2223


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


Should a function contain a return statement if it does not return a value?

600


write a progrmm in c language take user interface generate table using for loop?

1575


Explain how can a program be made to print the line number where an error occurs?

694