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
Describe how arrays can be passed to a user defined function
Create a simple code fragment that will swap the values of two variables num1 and num2.
How do you view the path?
Explain how do you determine whether to use a stream function or a low-level function?
how to count no of words,characters,lines in a paragraph.
Explain what is the difference between text files and binary files?
What does printf does?
How is = symbol different from == symbol in c programming?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What are identifiers c?
How to declare pointer variables?
What is pointers in c?
Write a program to print fibonacci series without using recursion?
Is c programming hard?
What does nil mean in c?