why Language C is plateform dependent
Answers were Sorted based on User's Feedback
Answer / mumtaz begum
c is a Structure oriented programming language n it doesn't generate any byte code which can't be run on any operating system with this disadvantage C doen't bcome a platform independent..
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / guest
c is a Structure oriented programming language n it doesn't
generate any byte code which can't be run on any operating
system with this disadvantage C doen't bcome a platform
independent..
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / samineni.anil babu
Well, C is not platform dependent. You can compile C into source code on a Windows, Mac, Unix or any other operating system as long as you are using that type of computer. You could write code that can be compiled on almost any operating system.
| Is This Answer Correct ? | 2 Yes | 3 No |
biggest of two no's with out using if condition statement
Can we include one C program into another C program if yes how?
Why c++ is called c++ and not c+?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What do you mean by keywords in c?
WHAT IS PRE POSSESSORS?
what is the meaning of 'c' language
Describe the header file and its usage in c programming?
Subtract Two Number Without Using Subtraction Operator
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*