What is an operator?
No Answer is Posted For this Question
Be the First to Post Answer
What should malloc(0) do?
explain memory layout of a C program
Explain bit masking in c?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
swap two integer variables without using a third temporary variable?
Apart from dennis ritchie who the other person who contributed in design of c language.
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
How will you write a code for accessing the length of an array without assigning it to another variable?
Write a program in C to reverse a number by recursive function?
Write a function to find the area of a triangle whose length of three sides is given
What is a Genralised LInked List?? Please give a detailed explation of it..
A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.