what is the difference between c and java?
Answer / ashu_deepu
the major difference is C is procedural language.
while java is object oriented language.
| Is This Answer Correct ? | 3 Yes | 0 No |
What are the back slash character constants or escape sequence charactersavailable in c?
Why is c so popular?
1 1 12 21 123 321 12344231 how i creat it with for loop??
What is the easiest sorting method to use?
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
Can we write a program without main() function?
25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?
11 Answers CTS, TCS,
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
Find the largest number from the given 2 numbers without using any loops and the conditional operator.