What is the use of pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what a Binary Search Tree is.
What are the 5 data types?
How to access or modify the const variable in c ?
16 Answers HCL, HP,
Explain what is wrong with this program statement?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
what is the output of the program and explain why?? #include<stdio.h> void main ( ) { int k=4,j=0: switch (k) { case 3; j=300; case 4: j=400: case 5: j=500; } printf (ā%d\nā,j); }
Is c compiled or interpreted?
Explain which function in c can be used to append a string to another string?
What is non linear data structure in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
What does s c mean in text?