what is the use of c program?

Answer Posted / shubham singh

This is a tool by which computer can understand our
language in binary language.

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different types of control structures in programming?

656


What is omp_num_threads?

575


Explain how do you declare an array that will hold more than 64kb of data?

897


Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?

596


Explain what are global variables and explain how do you declare them?

635






a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

640


How reliable are floating-point comparisons?

621


Why is it important to memset a variable, immediately after allocating memory to it ?

1550


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

575


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

660


Explain what does a function declared as pascal do differently?

634


When should I declare a function?

621


Explain what is the benefit of using enum to declare a constant?

583


How can you determine the maximum value that a numeric variable can hold?

633


Explain how can I convert a number to a string?

639