What is a pointer?
Answer / gsrinivas
pointer is variable which stores the address of the memory
location
| Is This Answer Correct ? | 26 Yes | 2 No |
What is a dynamic array in c?
Why do we use static in c?
how to determine the complexity of an algorithm as log(n)
How can I access an I o board directly?
What is pointers in c?
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.
which header file contains main() function in c?
17 Answers Google, HCL, TCS,
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is the meaning of c in c language?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What are runtime error?
Write a programe print the sum of series 0,1,2,.....10