Are bit fields portable?
No Answer is Posted For this Question
Be the First to Post Answer
What is assert and when would I use it?
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
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?
how the compiler treats any volatile variable?Explain with example.
How do you redirect a standard stream?
Write a program to print the prime numbers from 1 to 100?
question-how to run a c programme.
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
what is the need for main function in c?
why do some people write if(0 == x) instead of if(x == 0)?
How can my program discover the complete pathname to the executable from which it was invoked?
What is Memory leakage ?