What is logical error?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by int main ()?
Difference between null pointer and dangling pointer?
Why clrscr is used in c?
How to calculate Total working time using Login and logout?
2 Answers CTS, Cygnus, Infosys, Signal Networks, TCS, Wipro,
Is c is a low level language?
What is a segmentation fault?
What is data types?
write a program which counts a product of array elements lower than 10.
1)what are limitations for recursive function? 2)write a program to read a text file and count the number of characters in the text file
What is bubble sort technique in c?
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 static memory allocation?