Answer Posted / ramprakash
'C' means controller language which controls various
operations with complxity......
| Is This Answer Correct ? | 11 Yes | 9 No |
Post New Answer View All Answers
FILE PROGRAMMING
What is #include stdio h?
how to count no of words,characters,lines in a paragraph.
Explain what does the format %10.2 mean when included in a printf statement?
State two uses of pointers in C?
What is calloc() function?
What is an expression?
Explain what header files do I need in order to define the standard library functions I use?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
How can you tell whether a program was compiled using c versus c++?
What does p mean in physics?
What does the message "automatic aggregate intialization is an ansi feature" mean?
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is define c?
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);