What are the differences between new and malloc in C?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between Macro and ordinary definition.
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
what is difference b/w extern & volatile variable??
What is pre-emptive data structure and explain it with example?
Why & is used 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.
Explain how are 16- and 32-bit numbers stored?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }
What is this pointer in c plus plus?
Differentiate between static and dynamic modeling.
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()