What will be the output of
x++ + ++x?

Answer Posted / sairoong.l@drsomchai.net

static void Job13(Args _args)
{
Dialog dlg;
DialogField dlgField;
;


dlg = new Dialog("test");
dlg.addGroup("test");
dlgField = dlg.addField(TypeId(CustAccount), "test");

if(dlg.run())
info(dlgField.value());


}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we assign string to char pointer?

578


Why pointers are used?

627


What math functions are available for integers? For floating point?

614


What is difference between union and structure in c?

568


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1756






What is volatile variable in c with example?

579


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

671


what will be maximum number of comparisons when number of elements are given?

1404


Can the “if” function be used in comparing strings?

580


Is c is a high level language?

611


What is c mainly used for?

589


What is the difference between strcpy() and memcpy() function in c programming?

618


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1253


How can I open files mentioned on the command line, and parse option flags?

583


What do you mean by Recursion Function?

625