Explain zero based addressing.
No Answer is Posted For this Question
Be the First to Post Answer
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
write a program to add two numbers of any size.....(remember any size)
Explain the priority queues?
wtite a program that will multiply two integers in recursion function
What is storage class?
What is Dynamic Initialization.
How to print %d in output
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
What does int main () mean?
can a union be self-referenced?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above