Is the C language is the portable language...If yes...Then
Why...and if not then what is problem so it is not a
Portable language..???
Answers were Sorted based on User's Feedback
Answer / abdur rab
C as a language is portable across any platforms, as it
needs a compiler to compile in different platforms.
The drawback of compiled 'C' code is "Architecture
Dependent" and hence the code compiled in 32 bit
architecture cannot be used for 64 bit.
| Is This Answer Correct ? | 31 Yes | 2 No |
Answer / suresh
ya,c is a portable language coz it needs compiler to
compile the program at different platforms.
| Is This Answer Correct ? | 14 Yes | 4 No |
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
Why doesn't C have nested functions?
what is the meaning of java that is (J A V A) full form of JAVA
71 Answers AKS University, Bhel, BNL, BPO, HCL, Peacecon,
what is the diference between pointer to the function and function to the pointer?
to find out the reverse digit of a given number
6 Answers Infosys, Microsoft, TCS, Wipro,
How do you print only part of a string?
Explain the properties of union. What is the size of a union variable
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
Is boolean a datatype in c?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
What are pointers in C? Give an example where to illustrate their significance.
Why is this loop always executing once?