Is c an object oriented programming language?
Answer / kamil
No, C is not an object oriented programming language
It's a structural programming language
| Is This Answer Correct ? | 0 Yes | 0 No |
What is extern storage class in c?
Explain what is operator promotion?
main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } output??
19 Answers EBS, Ramco, Sangwin, TCS,
What are linked lists in c?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
How can I ensure that integer arithmetic doesnt overflow?
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
What does volatile do?
What is cohesion and coupling in c?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Is javascript written in c?