what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / manjot singh
It will gve a garbage value becoz ch has not value it will
automtically generate value by complier
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is calloc malloc realloc in c?
How can I manipulate strings of multibyte characters?
What is the purpose of & in scanf?
What is the difference between far and near in c?
What is the use of getchar() function?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
How can you allocate arrays or structures bigger than 64K?
Place the #include statement must be written in the program?
Why isn't any of this standardized in c? Any real program has to do some of these things.
Explain what is the advantage of a random access file?
program to convert a integer to string in c language'
Why c is called free form language?
How are variables declared in c?
What are identifiers in c?
Function calling procedures? and their differences? Why should one go for Call by Reference?