Answer Posted / venkatesh
dennis ritchie at Bell telephone laboratories(now AT&T Bell
laboratories)
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why c is a procedural language?
What is double pointer in c?
Describe the order of precedence with regards to operators in C.
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is the difference between array_name and &array_name?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Is printf a keyword?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
explain what are pointers?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What does sizeof return c?
Write a program which returns the first non repetitive character in the string?
How can I send mail from within a c program?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
What is the purpose of 'register' keyword in c language?