What is this infamous null pointer, anyway?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the term printf() and scanf() used in c language?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
In C, What is the #line used for?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
size maximum allocated by calloc()
What's the best way of making my program efficient?
WAP – represent a char in binary format
Q. where is the below variables stored ? - volatile, static, register
what is the use of pointers
Whether there can be main inside another main?If so how does it work?