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
How do I swap bytes?
can anyone please tell about the nested interrupts?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Why flag is used in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is data structure in c and its types?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Can we change the value of #define in c?
What are nested functions in c?
What are pointers really good for, anyway?
What is use of bit field?
How can you increase the size of a dynamically allocated array?
What happens if a header file is included twice?
Write a program of advanced Fibonacci series.
Explain the difference between ++u and u++?