How do you print an address?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between ordinary variable and pointer in c.
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
What is #line used for?
What is the size of structure in c?
Explain low-order bytes.
What are multidimensional arrays?
HOW TO HANDLE EXCEPTIONS IN C
write a program to display all prime numbers
Do you know what are bitwise shift operators in c programming?
What is function pointer and where we will use it
Is Exception handling possible in c language?
disadvantages of realloc ?