what is the main use of c where it can use the c
Answers were Sorted based on User's Feedback
Answer / umed sharma
The main use of C-language we can't describe because C is a such of powerful language that can make operating system of any type and also other type of software with great utilities and tools. By using a good logic we can create good software for any problem using C.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the purpose of #pragma directives in C?
What is the heap in c?
What is the difference between fork() and vfork()?
What is external and internal variables What is dynamic memory allocation what is storage classes in C
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
Tell me what is null pointer in c?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
write a program to create a sparse matrix using dynamic memory allocation.
can we write a c program with out using main
How do you define a function?