All technical questions
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
How can I open a file so that other programs can update it at the same time?
What is wrong in this statement?
What does the function toupper() do?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
How can you find the day of the week given the date?
Explain how can type-insensitive macros be created?
Write a code on reverse string and its complexity.
What are directives in c?
What are data structures in c and how to use them?
What are the advantages of using macro in c language?
Explain what is wrong with this program statement? Void = 10;
What is the data segment that is followed by c?
What are dangling pointers? How are dangling pointers different from memory leaks?