What is the modulus operator?
No Answer is Posted For this Question
Be the First to Post Answer
How to add two numbers with using function?
When should a type cast not be used?
Difference between C and Embedded C?
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 ?
Can you apply link and association interchangeably?
how can f be used for both float and double arguments in printf? Are not they different types?
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
How can I call a function, given its name as a string?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
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,
Explain what is a 'locale'?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type