What is an lvalue in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
explain about storage of union elements.
Is c procedural or object oriented?
Write a Program to accept different goods with the number, price and date of purchase and display them
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
How do you determine the length of a string value that was stored in a variable?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Write code for atoi(x) where x is hexadecimal string.
What is mean by data types in c?
How to reverse a linked list
1 Answers Aricent, Fidelity, IBM, TCS,
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is a nested loop?