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 |
How pointer is different from array?
what is the output of below pgm? void main() { int i=0; if(i) printf("pass"); else printf("fail"); }
Why void is used in c?
Explain what’s a signal? Explain what do I use signals for?
write a progam to display the factors of a given number and disply how many prime numbers are there?
#include<stdio.h> main(0 { printf("\n %d %d %d",sizeof(3),sizeof("3"),sizeof(3)); }
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
what is the difference between. system call and library function?
What are pointers? Why are they used?
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is the difference between a free-standing and a hosted environment?