Explain setjmp()?
No Answer is Posted For this Question
Be the First to Post Answer
what do you mean by enumeration constant?
What’s the special use of UNIONS?
Why is C called a middle-level language?
c program to subtract between two numbers without using '-' sign and subtract function.
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
totally how much header files r in c language
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
What does 3 mean in texting?
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
Explain how many levels deep can include files be nested?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year