What are the advantage of c language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between c &c++?
What is a protocol in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
why return type of main is not necessary in linux
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
In a header file whether functions are declared or defined?
What are the different types of C instructions?
What is a sequential access file?
how should functions be apportioned among source files?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
What is nested structure with example?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.