What are the 5 types of inheritance in c ++?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
Describe the steps to insert data into a singly linked list.
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.
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
What is the Purpose of 'extern' keyword in a function declaration?
Write a function to find the area of a triangle whose length of three sides is given
i got 75% in all semester am i eligible for your company
What is the difference between text and binary modes?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
What is C language Terminator?