what is the use of c program?
Answers were Sorted based on User's Feedback
Answer / abhi tiger
to build software applications and also provide services.
| Is This Answer Correct ? | 23 Yes | 1 No |
Answer / shubham singh
This is a tool by which computer can understand our
language in binary language.
| Is This Answer Correct ? | 4 Yes | 1 No |
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is a structure member in c?
What does the message "warning: macro replacement within a string literal" mean?
What is your stream meaning?
What is structure in c explain with example?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
What are reserved words with a programming language?
What is oops c?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
How can you pass an array to a function by value?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
What is the diffrent between while and do while statement ?