Archive for cpp programs
You are browsing the archives of cpp programs.
You are browsing the archives of cpp programs.
1. It was calculated that 75 men could complete a piece of work in 20 days. When work was scheduled to commence, it was found necessary to send 25 men to another project. How much longer will it take to complete the work?
2. A student divided a number by 2/3 when he required to multiply by 3/2. [...]
21. Differentiate the following notations?
I: :obj1 :obj2
II: :obj1 :obj2
In the above representation I, obj1 sends message to obj2. But in the case of II the [...]
21. Differentiate the following notations?
I: :obj1 :obj2
II: :obj1 :obj2
In the above representation I, obj1 sends message to obj2. But in the case of II the [...]
111) void pascal f(int i,int j,int k)
{
printf(“%d %d %d”,i, j, k);
}
void cdecl f(int i,int j,int k)
{
printf(“%d %d %d”,i, j, k);
}
main()
{
int i=10;
f(i++,i++,i++);
printf(” %d\n”,i);
i=10;
f(i++,i++,i++);
printf(” %d”,i);
}
Answer:
10 11 12 13
12 11 10 13
Explanation:
Pascal argument passing mechanism forces the arguments to be called from left to right. cdecl is the normal C argument passing mechanism where the arguments are passed [...]