what is c programming?
Answers were Sorted based on User's Feedback
Answer / keerthi
c is procedure oriented programming language. In c program
execution starts from main().c is basic language for some
languages like c++,java etc.c is platform dependent and case
sensitive language.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / renisha
c is powerful system language even which user are using to
compiler as source code. it used input and display the output.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / priyanka mali
C Is the procedure oriented language, basically uses firstly
compilers which accepts source code from compliers as input
and produces .exe as output.it is a first usr friendly
language which takes input in the form of statements / usr
language and givesdesired outpu.
| Is This Answer Correct ? | 1 Yes | 0 No |
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
what is inline function?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
How can I read in an object file and jump to locations in it?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
how can use subset in c program and give more example
What are the advantages of Macro over function?
Tell me is null always defined as 0(zero)?
How do you do dynamic memory allocation in C applications?
What is the difference between union and structure in c?