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 |
write a program to display reverse of a number using for loop?
what is the basis for selection of arrays or pointers as data structure in a program
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
we have to use realloc only after malloc or calloc ? or we can use initially with out depending on whether we are using malloc or calloc in our program ?
Explain how does free() know explain how much memory to release?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What is the importance of c in your views?
Explain what are its uses in c programming?
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
How does memset() work in C?