how many times of error occur in C
Answers were Sorted based on User's Feedback
Answer / meenu
3 types of errors. logical , syntax and run time.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / vinay tiwari
there are three types of error in c
logical,syntax,linking error
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / pressi
There are three types of errors in C
Compiler, Logical, Run-Time errors
| Is This Answer Correct ? | 1 Yes | 0 No |
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 |
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 |
a value that does not change during program execution a) variabe b) argument c) parameter d) none
9.how do you write a function that takes a variable number of arguments? What is the prototype of printf () function? 10.How do you access command-line arguments? 11.what does ‘#include<stdio.h>’ mean? 12.what is the difference between #include<> and #include”…”? 13.what are # pragma staments? 14.what is the most appropriate way to write a multi-statement macro?
What is the role of && operator in a program code?
Explain data types & how many data types supported by c?
what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
Why doesnt the call scanf work?
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
simple program for virtual function?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"