What is pragma in c?
No Answer is Posted For this Question
Be the First to Post Answer
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Differentiate between the expression “++a” and “a++”?
What is pointer to pointer in c language?
How can you find out how much memory is available?
what is diference between return 0 and return NULL??
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
How can I access an I o board directly?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
related proverb of "dont count your chicken before it hatches"
Is c++ based on c?
How can I access a memory located at certain address?
State the difference between x3 and x[3].