What is a macro?
No Answer is Posted For this Question
Be the First to Post Answer
What are formal parameters?
difference between function & structure
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
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.
Why c is called free form language?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
difference between Low, Middle, High Level languages in c ?
What is putchar() function?
Can a variable be both constant and volatile?
Explain how do you search data in a data file using random access method?
What is variable declaration and definition in c?