Why is it that not all header files are declared in every C program?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between getch() and getche()?
What does the function toupper() do?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
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 bubble sort program without using temporary variable?
What are the advantages of using macro in c language?
Is it better to use malloc() or calloc()?
What are lookup tables in c?
What is main void in c?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
what is the use of pointers
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }