What are pointers? What are different types of pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Why does the call char scanf work?
What are loops c?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
write an algorithm to display a square matrix.
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Why is a semicolon (;) put at the end of every program statement?
What header files do I need in order to define the standard library functions I use?
How to calculate sum
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Explain b+ tree?
write a program to produce the following output; ABCDEFGFEDCBA ABCDEF FEDCBA ABCDE EDCBA ABCD DCBA ABC CBA AB BA A A
17 Answers ABC, College School Exams Tests,
Why use int main instead of void main?