Explain what is the difference between text files and binary files?
No Answer is Posted For this Question
Be the First to Post Answer
What are the preprocessors?
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.
How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.
Add 2 64 bit numbers on a 32 bit machine
3 Answers EMC, Hyderabad Central University, NetApp,
When should volatile modifier be used?
c program to subtract between two numbers without using '-' sign and subtract function.
how to find the kth smallest element in the given list of array elemnts.
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
wt is d full form of c
Write a program to print the prime numbers from 1 to 100?
Why is c called c not d or e?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC