Should I learn c before c++?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
hi how to convert program from notepad to turboc editor can u please help me
What is the purpose of type declarations?
There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
When should a far pointer be used?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
How can I do peek and poke in c?
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
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.
What is self-referential structure in c programming?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
Why n++ execute faster than n+1 ?