What are the similarities between c and c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how can you avoid including a header more than once?
What is the use of typedef in structure in c?
What is the use of putchar function?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
What are the rules for identifiers in c?
what is dangling pointer?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
What is the right way to use errno?
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.
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
from which concept of 'c', the static member function of 'c++' has came?