how to devloped c lenguege?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are header files and explain what are its uses in c programming?

614


How would you obtain the current time and difference between two times?

731


What is #include stdio h and #include conio h?

604


How are 16- and 32-bit numbers stored?

725


Difference between strcpy() and memcpy() function?

681






write a program to find the given number is prime or not

3847


write a programming in c to find the sum of all elements in an array through function.

1709


When should the register modifier be used? Does it really help?

616


What are register variables in c?

576


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

2715


What is auto keyword in c?

792


Explain how can I open a file so that other programs can update it at the same time?

594


What is register variable in c language?

607


can any one tel me wt is the question pattern for NIC exam

1559


What is #include in c?

601