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 |
Is main is a keyword in c?
What are linker error?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
what is use of malloc and calloc?
how to print a statement in c without use of console statement ,with the help of if statement it should print
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
write a program structure to find average of given number
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
how to write palindrome program?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.