Explain how can you tell whether a program was compiled using c versus c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Describe the modifier in c?

0 Answers  


Where register variables are stored in c?

0 Answers  


What will be the output of following program #include main() { int x,y = 10; x = y * NULL; printf("%d",x); }

1 Answers  


prototype of sine function.

2 Answers   Cadence,


I have seen function declarations that look like this

0 Answers  






Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4

2 Answers   Mascot,


What is page thrashing?

0 Answers  


What is a macro, and explain how do you use it?

0 Answers  


What is the meaning of 2d in c?

0 Answers  


program for validity of triangle from 3 side

7 Answers  


print the table 5 in loops

3 Answers  


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.

0 Answers  


Categories