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 |
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }
Write a C program that reads a series of strings and prints only those ending in "ed"
What is the Difference between Macro and ordinary definition?
3 Answers Bosch, Cognizant, College School Exams Tests, Motorola,
What does %p mean?
how to generate the length of a string without using len funtion?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
With the help of using classes, write a program to add two numbers.
What does *p++ do? What does it point to?
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Explain how can I remove the trailing spaces from a string?
What are external variables in c?