How to swap two values using a single variable ?
condition: Not to use Array and Pointer ?
Answer Posted / guest
use actual and formal function
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Explain how can I make sure that my program is the only one accessing a file?
Explain how can I avoid the abort, retry, fail messages?
What is omp_num_threads?
How many levels of indirection in pointers can you have in a single declaration?
What is main return c?
What are near, far and huge pointers?
What is a wrapper function in c?
what value is returned to operating system after program execution?
What is the difference between int main and void main?
Are the expressions * ptr ++ and ++ * ptr same?
What is calloc in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.