what is the hardware model of CFG( context free grammar)
No Answer is Posted For this Question
Be the First to Post Answer
Are enumerations really portable?
what is the output? #define fun(a,b,t) (g ##t=(a),(a)=(b),(b)=g##t) float gfloat; main() { float a=1.12,b=3.14; fun (a,b,float); printf("na=%4.2f,b=%4.2f",a,b); } A)Error in Defining Macro B)a=1.12,b=3.14 C)a=3.14,b=1.12 D)None of the Above
3 Answers Accenture, Infosys, Wipro,
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
What is array within structure?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
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.
what about "char *(*(*a[])())();"
Who is the founder of c language?
When should volatile modifier be used?
what is the meaning of 'c' language
What is a structure member in c?
main is a predefined or user define function if user defined why? if predefined whay?