What does return 1 means in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I trap or ignore keyboard interrupts like control-c?
Write a program that an operator and two operands read from input operand operator on the implementation and results display.
any string of bits of length 'n' represents a unique non- negative integer between.............?
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
how will you write a program on linked lists using JAVA programming???????????
What is New modifiers?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
Why c is called free form language?
How can I swap two values without using a temporary?
What is structure padding and packing 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); }