what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / paul
It'll give a warnin tat "a is never used...If u Continue
executing...it will the memory addres that is currently
used.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Explain how does free() know explain how much memory to release?
What are Macros? What are its advantages and disadvantages?
provide an example of the Group by clause, when would you use this clause
Is it fine to write void main () or main () in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Is there sort function in c?
How can I do peek and poke in c?
What is the meaning of c in c language?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
What is the difference between typedef and #define?
What is the difference between fread and fwrite function?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
What is a newline escape sequence?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.