What is floating point exception error? And what are
different types of errors occur during compile time and run
time? why they occur?
Answer / gsrinivas
if we declared a variable of type float and we use that or
we match that with other types then floating point
exception occcures.syntax errors because if the code or
structure of alanguge is not match with the author
specified rules and structures mismatch occures errors will
come.
| Is This Answer Correct ? | 1 Yes | 1 No |
Hi can anyone tell what is a start up code?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.
in malloc and calloc which one is fast and why?
What is structure and union in c?
Give me the code of in-order recursive and non-recursive.
What is pointers in c?
What is anagram in c?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
What are header files and explain what are its uses in c programming?
What are the 4 types of unions?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant