what is difference between #include<stdio.h> and
#include"stdio.h"
Answer Posted / jeke kumar gochhayat
in #include<stdio.h> , stdio.h is a predefined header file
in the include directory.
but in #include"stdio.h" is a userdefined header files
but functions are same
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the size of structure pointer in c?
How do shell structures work?
How can you determine the maximum value that a numeric variable can hold?
How do I get an accurate error status return from system on ms-dos?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
Explain what is the benefit of using enum to declare a constant?
What are void pointers in c?
What is c++ used for today?
When is a null pointer used?
Does c have circular shift operators?
What is keyword in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Compare and contrast compilers from interpreters.
What is quick sort in c?
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.