identify the in correct expression
a.a=b=3=4;
b.a=b=c=d=0;
float a=int b=3.5;
d.int a;
float b;
a=b=3.5;
Answer Posted / viji
float a=int b=3.5;
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All 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.
Explain what is a const pointer?
Are pointers integers in c?
Which is an example of a structural homology?
What is preprocessor with example?
What is structure pointer in c?
What are the basic data types associated with c?
Explain the advantages and disadvantages of macros.
What are header files in c programming?
What is the use of the function in c?
Explain how can you check to see whether a symbol is defined?
difference between native and cross compilers
Write the Program to reverse a string using pointers.
Explain what is the benefit of using an enum rather than a #define constant?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?