What is the C program to swap two numbers without using third variable? Example: x=10 y=40
SIKSHAPATH Latest Questions
Functions can return enumeration constants in C? a. true b. false c. depends on the compiler d. depends on the standard
Set of instructions to be provided to an electronic machine to perform a task is called a) Programming b) Processing c) Computing d) Compiling
Which of the following is NOT a container adapter? a. stack b. queue c. deque d. priority-queue
Which of the following is a user-defined data type in c language? (a) typedef int Boolean; (b) typedef enum {Mon, Tue, Wed, Thu, Fri} Workdays; (c) struct {char name[10], int age}; (d) all of the mentioned
Create a student class object array of size four having attributes name, designation and salary. Let the student class have appropriate getter/setters methods for accessing these attributes. Initialize these attributes through the setter methods. Store this object into a file ...