What is Full Form of C and Why We use C

Answer Posted / santoshkumar

c is a procedure oriented language or structure oriented
language

Is This Answer Correct ?    20 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to swap two numbers without using a temporary variable?

599


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

2639


What does the format %10.2 mean when included in a printf statement?

1071


Is a pointer a kind of array?

589


write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values.  The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.

2689






How can you tell whether two strings are the same?

817


disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit

1619


What is dynamic variable in c?

551


provide an example of the Group by clause, when would you use this clause

1693


Write a C program to count the number of email on text

1406


List the different types of c tokens?

607


Why flag is used in c?

643


Explain how can a program be made to print the name of a source file where an error occurs?

668


What is getche() function?

597


How can I split up a string into whitespace-separated fields?

560