What is main return c?
No Answer is Posted For this Question
Be the First to Post Answer
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
What is the use of volatile?
What is #line used for?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Who is the founder of c language?
Write a program to generate prime factors of a given integer?
How do I use void main?
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
Are there any problems with performing mathematical operations on different variable types?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
How can I access memory located at a certain address?
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?