What are the Advantages of using macro
No Answer is Posted For this Question
Be the First to Post Answer
without using arithmatic operator convert an intger variable x into x+1
int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
What is time complexity c?
what is the difference b/w NULL and null?
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.
please give me some tips for the selection in TCS.
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 best way to store flag values in a program?
without using arithmatic operator solve which number is greater??????????
Why Modern OS are interrupt driven?Give an example
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Why cant I open a file by its explicit path?