Which is best book for data structures in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
Explain the use of 'auto' keyword
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
what is pointer
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
What is a void pointer in c?
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
what is bitwise operator?
Why use int main instead of void main?
Why void is used in c?
Why doesnt this code work?
What are structural members?