what is the difference between structural,object
based,object orientd programming languages?
Answer / himanshu singh
In structural focus is more on procedures whereas in oject based focus is more on data..
one mr thing.. structural follows top down approach whereas object oriented follows bottom up approach
| Is This Answer Correct ? | 4 Yes | 3 No |
what is the difference between %d and %*d in c languaga?
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
What is use of pointer?
Is main is a keyword in c?
What are the scope of static variables?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Why is sizeof () an operator and not a function?
How to write a program to receive an integer & find its octal equivalent by using for loop?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
code for find determinent of amatrix
Tell me when would you use a pointer to a function?
Write a program to generate random numbers in c?