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 |
Why array is used in c?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Do you know what are the properties of union in c?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
Is c still relevant?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
What is typedf?
Write program to remove duplicate in an array?
At a shop of marbles, packs of marbles are prepared. Packets are named A, B, C, D, E …….. All packets are kept in a VERTICAL SHELF in random order. Any numbers of packets with these names could be kept in that shelf as in this example: bottom of shelf ---> [AAAJKRDFDEWAAYFYYKK]-----Top of shelf. All these packets are to be loaded on cars. The cars are lined in order, so that the packet could be loaded on them. The cars are also named [A, B, C, D, E,………….]. Each Car will load the packet with the same alphabet. So, for example, car ‘A’ will load all the packets with name ‘A’. Each particular car will come at the loading point only once. The cars will come at the loading point in alphabetical order. So, car ‘B’ will come and take all the packets with name ‘B’ from the shelf, then car ‘C’ will come. No matter how deep in the shelf any packet ‘B’ is, all of the ‘B’ packets will be displaced before the ‘C’ car arrives. For that purpose, some additional shelves are provided. The packets which are after the packet B, are kept in those shelves. Any one of these shelves contains only packets, having the same name. For example, if any particular shelf is used and if a packet with name X is in it, then only the packets having names X will be kept in it. That shelf will look like [XXXXXXX]. If any shelf is used once, then it could be used again only if it is vacant. Packets from the initial shelf could be unloaded from top only. Write a program that finds the minimum total number of shelves, including the initial one required for this loading process.
Can we access array using pointer in c language?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
How to access or modify the const variable in c ?
16 Answers HCL, HP,