how many times of error occur in C

Answers were Sorted based on User's Feedback



how many times of error occur in C..

Answer / meenu

3 types of errors. logical , syntax and run time.

Is This Answer Correct ?    7 Yes 0 No

how many times of error occur in C..

Answer / preethi

2 types of error. syntax error and segmentation fault

Is This Answer Correct ?    5 Yes 2 No

how many times of error occur in C..

Answer / ram

4 logical,syntax,linking,runtime error

Is This Answer Correct ?    3 Yes 0 No

how many times of error occur in C..

Answer / swaran

2TYPES LOGICAL ERROR, SYNTAX ERROR

Is This Answer Correct ?    2 Yes 0 No

how many times of error occur in C..

Answer / priya

compilation error and run time error

Is This Answer Correct ?    1 Yes 0 No

how many times of error occur in C..

Answer / vinay tiwari

there are three types of error in c
logical,syntax,linking error

Is This Answer Correct ?    1 Yes 0 No

how many times of error occur in C..

Answer / pressi

There are three types of errors in C
Compiler, Logical, Run-Time errors

Is This Answer Correct ?    1 Yes 0 No

how many times of error occur in C..

Answer / ambar

3 types of errors in c are:
symmantic error(logical error)
syntax error(language gramatical error)
run time error(compilation or executing error)

Is This Answer Correct ?    1 Yes 0 No

how many times of error occur in C..

Answer / xyz

there is no limit......what
about.....lvalue&rvalue...headerfile...fatal eroor.....in
fatal error there re so many error...i think there is no
cunt on this

Is This Answer Correct ?    1 Yes 0 No

how many times of error occur in C..

Answer / song

syntax, logical, data

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

CAN ANYONE PLEASE HELP ON THIS PROGRAM FOR MY EXAM..TQ Write a C program to help a H’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the H’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the H’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80 Your program must do the following task below: a. Define the data structs, menu item types with two components: menu item of type string and menu price of type double. Use an array to declare the data structs. b. Function get data to loads the data into the array menu list. c. Function show menu to show the different breakfast items offered by the restaurant and tell the user how to select the items. d. Function print receipt to calculates and prints the customer receipt. The billing amount should include a 5% tax. e. Format your output with two decimal places. The name of each item in the output must be left-justify. You may assume that the user selects only one item of a particular type. f. The two sample output as shown: Welcome to HiFi’s Restaurant 1 Bacon and Egg $3.45 1 Muffin $2.20 1 Coffee $1.50 Tax 5% $0.35 Amount Due $7.50

1 Answers  


Design a program using an array that searches a number if it is found on the list of the given input numbers and locate its exact location in the list.

4 Answers  


what is the difference between entry control and exit control statement?

12 Answers   Darbari Lal DAV Model School,


how to implement stack work as a queue?

2 Answers  


Why preprocessor should come before source code?

2 Answers  






Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

0 Answers  


write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3

0 Answers   ADP,


What is a example of a variable?

0 Answers  


main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


Write a program to swap two numbers without using third variable in c?

0 Answers  


what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(“ %d\n”,sum); } what is the difference between a=10 and a=010??

3 Answers   Oracle,


What are the 5 data types?

0 Answers  


Categories