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 |
What is the difference between fork() and vfork()?
program to convert a integer to string in c language'
What is the difference between array_name and &array_name?
What will happen when freeing memory twice
Explain about block scope in c?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
a=(1,2,3); b=1,2,3; c=1,(2,3); d=(1,2),3; what's the value of 'a','b','c','d'
regarding pointers concept
Do you know what is the purpose of 'extern' keyword in a function declaration?
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
how to make program without <> in libray.
Explain indirection?