Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
No Answer is Posted For this Question
Be the First to Post Answer
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Do pointers need to be initialized?
Why do u use # before include in a C Progam?
write a program to concatenation the string using switch case?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Tell me can the size of an array be declared at runtime?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
Differentiate between static and dynamic modeling.
differnce between do and do while
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.