What are categories used for in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
what is the output for the code : main() { int i,j; printf("%d %d ",scanf("%d%d",&i,&j)); }
#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..
what is the difference between #include<> and #include”…”?
Can we initialize extern variable in c?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
how will you write a program on linked lists using JAVA programming???????????
Explain in detail how strset (string handling function works )pls explain it with an example.
What is file in c preprocessor?
Why is malloc used?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20