what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / siraj
0
| Is This Answer Correct ? | 1 Yes | 8 No |
Post New Answer View All Answers
What is multidimensional arrays
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
write a program fibonacci series and palindrome program in c
How do you declare a variable that will hold string values?
Why malloc is faster than calloc?
When should you use a type cast?
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 array of structure in c?
What does char * * argv mean in c?
How do you construct an increment statement or decrement statement in C?
Explain what are bus errors, memory faults, and core dumps?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is the difference between array and pointer?
code for quick sort?