this is to swap to strings....but in output the whole
strings are swapped leaving first as it is...why it is so
#include<iostream.h>
int main()
{
char a[]="ajeet";
char b[]="singh";
long x=*a;
long y=*b;
cout<<x<<":"<<y;
x=x+y;
y=x-y;
x=x-y;
*a=x;
*b=y;
cout<<x<<":"<<y;
cout<<&a<<endl;
cout<<&b<<endl;
}
Distinguish between:
a) Normal layout & Print Layout views
b) Windows Clipboard & office Clipboard
c) Save & Save As Commands
d) Program File & Data File
e) Pie Charts & Barr Charts
To modify an, existing worksheet. What steps are involved
for:
1. Inserting and deleting rows and columns.
2. Printing cell formulas 3Jld displayed values
3. Using the page setup command
what is software cycle?
What is a mission critical system ?
What is the important aspect of a real-time system ?
Explain the difference between microkernel and macro kernel.
Give an example of microkernel.Why paging is used ?
Which is the best page replacement algo and Why ?
What is software life cycle ?
How much time is spent usually in each phases and why Which
one do U want to work if selected in Honeywell ?
Which are the different types of testing ?
What is a distributed system ?
Some questions about CSP.
Which languages do U know ?
What are the differences between Pascal and C.
questions from Compiler construction and Lisp.
Which are the different computer architecture?
What is the requirement in MIMD ?
What is the difference between RISC and CISC processors ?
Difference between loosely coupled and tightly coupled systems ?
What is an open system?
class CTest
{
public:
void someMethod()
{
int nCount = 0;
cout << "This is some method --> " << nCount;
}
};
int main()
{
CTest *pctest;
pctest->someMethod();
return 0;
}
It will executes the someMethod() and displays the value
too. how is it possible with our creating memory for the
class . i think iam not creating object for the class.
Thanks in Advance...
Prakash
33
explain sub-type and sub class?
atleast u have differ it into 4 points?
How do you import payscale data from non SAP to SAP?is it
through LSMW or any other way is there?
38
i want a road rash 3d game code if some one know please help
me
30
help me i need a c++ program which takes sequesnce
of characters and outputed sequence of their token taypes,
work same compiler in lexical analysis phase
145
Write a C++ program that asks the user to choose a number
between 1 and 1000. Then,
your program should be able to guess the number by asking
the user no more than 10 yes/no
questions. Use a while loop in your program
9
how to find the correct email address format by using the
programe?
design a c++ class for the chess board,provide a c++ class
definition for such class(only class definition is required)
371
Describe the My Computer and My Documents folders;
identify the elements that are present in every Window.
172
Write a program to accept a number and to print numbers in
pyramid format?
for eg:for a no. 5
1
212
32123
4321234
543212345
9
what is oppes
92
1. Wrie a function which returns the most frequent number
in a list of integers. Handle the case of more than one
number which meets this criterion.
public static int[] GetFrequency(int[] list)