Explain the advantages and disadvantages of macros.
Where in memory are my variables stored?
How can I read and write comma-delimited text?
Which of the following is not a valid declaration for main ()? 1) int main() 2) int main(int argc, char *argv[]) 3) They both work
Why do we need functions in c?
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
explain how do you use macro?
What is undefined behavior?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What is optimization in c?
how do you redirect stdout value from a program to a file?