What is the difference between typedef and #define?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by preprocessor in c?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
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.
What are terms in math?
main() { int a[3][4] ={1,2,3,4,5,6,7,8,9,10,11,12} ; int i, j , k=99 ; for(i=0;i<3;i++) for(j=0;j<4;j++) if(a[i][j] < k) k = a[i][j]; printf("%d", k); }
4 Answers Vector, Wipro, Zoho,
How can I read data from data files with particular formats?
wt is diference between int and int pointer as same as float and float pointer and char and char pointer
Explain what happens if you free a pointer twice?
What is string in c language?
Write a simple program to find the size of different basic data types in C.
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
write a program to find lcm and hcf of two numbers??