Answer Posted / dhanshri chabukswar
c is a language used to write programs that tell the computer what to do - like calculations ,controlling devices or building operating systems.
c is a powerful,structured and portable programming language used to develop software and system applications ...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is string in c language?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
What is variables in c?
What is dynamic variable in c?
Can main () be called recursively?
What does sizeof int return?
What is the difference between declaring a variable and defining a variable?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Do you know what are the properties of union in c?
What are high level languages like C and FORTRAN also known as?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
what will be maximum number of comparisons when number of elements are given?