what is the value of b
if a=5;
b=++a + ++a
Answer Posted / kanitkar
10
| Is This Answer Correct ? | 6 Yes | 32 No |
Post New Answer View All Answers
How does free() know explain how much memory to release?
What is the function of volatile in c language?
What is the difference between c and python?
How many levels of pointers can you have?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
Which function in C can be used to append a string to another string?
code for quick sort?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Explain how can a program be made to print the name of a source file where an error occurs?
How can you read a directory in a C program?
What are register variables in c?
Explain two-dimensional array.
Why is structure padding done in c?
What is the significance of an algorithm to C programming?