What is Full Form of C and Why We use C
Answers were Sorted based on User's Feedback
Answer / ravi
i think C is combination of ADA, BASIC and COBOL so we can called combined language
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prasanthi
it came from BCPL..after B language they introduced C language
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / ankur
I think c programming language is derived from "B" language which is "BASIC" programming language but in c language compiler is used that is why some people called it is the full form of compiler
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / debayan mitra
The full form of C is combined language. It came as an
offspring of BCPL(Basic Combined programming language).
C is used to develop software.
| Is This Answer Correct ? | 8 Yes | 14 No |
Answer / sakshi
C language was renamed from BCPL second alphabet...
This language was designed fast,reliable,efficient,portable
system software..........
| Is This Answer Correct ? | 4 Yes | 12 No |
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
What is c value paradox explain?
How can you return multiple values from a function?
Why we use break in c?
What are the functions to open and close file in c language?
write a program to display the frequency of each element in a given array in c language
A set of N billiard balls are set on a one-dimensional table. The table is 1 meter long, set north-south with two pockets at either side. Each ball has zero width and there is no friction so it is moving with a fixed velocity of either northward or southward and bounces back in a perfect elastic collision from other balls it encounter on its way (or drop into one of the pockets). Your job is to keep track of the balls movements. Task Please write a program that gets the initial place, speed and direction of all the balls and gives the position of a specific ball after t seconds. Input The first line contains the number of scenarios. Each one of the other lines in the input contains a scenario: The first number, N, is the number of balls; followed by N pairs of numbers: the distance in centimeters from the south end of the table and the speed (positive speed meaning it moves northward); the last two numbers are the number i of the target ball you should track and the time T in seconds. Output The output is a single number for each line which is the place (distance in centimeters from the south end of the table) of the tracked ball after T seconds. Note: There is no new line character at the end of the result. Sample Input 5 1 50 1 1 1000 1 50 1 1 6 1 60 -2 1 6 2 10 1 95 -1 2 30 2 10 1 95 -1 2 60 Sample Output 100 56 48 65 70
What is bubble sort technique in c?
The difference between printf and fprintf is ?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What is the method to save data in stack data structure type?
why return type of main is not necessary in linux