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 |
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
formula to convert 2500mmh2o into m3/hr
What is a pragma?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
how to reverse string "Hello World" by using pointers only. Without any temp var
the data type used for unlimited value in c and how to do this program
void main() { int i=5; printf("%d",i+++++i); }
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
How can I trap or ignore keyboard interrupts like control-c?
What is wrong with this declaration?
Explain continue keyword in c