Answer Posted / 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 |
Post New Answer View All Answers
Are there constructors in c?
Is main a keyword in c?
Which is better between malloc and calloc?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
Are local variables initialized to zero by default in c?
What is wrong with this program statement? void = 10;
write a program to create a sparse matrix using dynamic memory allocation.
What is structure padding and packing in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
write a program to concatenation the string using switch case?
string reverse using recursion
What are header files in c?
write a program for the normal snake games find in most of the mobiles.
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Is c procedural or object oriented?