wat is the meaning of c?
Answers were Sorted based on User's Feedback
Answer / abirami
it is a common language. combination with cobol and fortarn.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / sudharsan
c is a basic structural programming language and this is a
advanced version of cobal and pascal etc....
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / leela
c is a programming language.
it is mainly support for operating system,and basic language
in programming.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / vikram
C is a text
oriented
programming
language. It is
developed from
previous
programming
BASIC.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nithya
c is a common and basic structurl programming language
and then all language in basic for c.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can we add pointers together?
Explain high-order and low-order bytes.
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
how to find the binary of a number?
Why should I prototype a function?
Explain the use of bit fieild.
c pgm count no of lines , blanks, tabs in a para(File concept)
name the language for writing c compiler?
What are the header files used in c language?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
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?