Write a program to maintain a singly linked list having the following functions: a) Creation of the list b) Displaying the list. c) Swap all nodes at consecutive even odd positions. E.g.: The nodes at position 1 should be swapped with node 2, node 3 with node 4 and so on.
7288Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
2 5116write a c program to Create a registration form application by taking the details like username, address, phone number, email along with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 5 users and display the details. In place of password display “****”. (Use Structures).
10427Post New CDAC Interview Questions
Explain about Market Research, Methods and data analysis.
What are the tools included in lightning ?
How do you execute your tests from windows run command?
What is print_r?
Why is java used?
What are the different types of arguments?
How many valves is tomcat configured with?
What is a method that attempts to reduce the complexity levels of aging legacy software? 1. Reengineering 2. Regression 3. Restructuring 4. Reusability 5. Reverse engineering
How do I test one variable against multiple values?
Is php a float?
What are vaious etl tools in the market?
What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?
How can we recover a file that was deleted in linux?
Explain user account with reference to oracle.
What are the different types of classes implemented in the set interfaces? : java collections