how to devloped c lenguege?
Answers were Sorted based on User's Feedback
Answer / anuj
c is a programming language.its develop through the
programming part such as structure, array,control statement
and its other element whose are developed the c programming
language
| Is This Answer Correct ? | 8 Yes | 4 No |
Answer / ram
its programming language.its developed by writing program
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / saranya
c language is developed by structure,array,class,etc.it can
easily created by pragramming
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / satish patel
c lenguage is one type of logic programming leanguage
c language is devloped by devide reach.
also devloping supported by R.D.Desoza.
c lenguage are also devloping at bcpl or b lenguage.
the also devloped is binary lenguage.binary language also
low level lenguage.this read and write 0 and 1 number. any
quary contact me satish_199119@yahoo.com thenks
friends.............
| Is This Answer Correct ? | 2 Yes | 2 No |
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
What is pointer & why it is used?
Can a function argument have default value?
What is floating point constants?
What are the types of arrays in c?
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
Is a pointer a kind of array?
What is a pointer on a pointer in c programming language?
Why does the call char scanf work?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.