What are the different types of linkage exist in c?
No Answer is Posted For this Question
Be the First to Post Answer
How many levels deep can include files be nested?
List some of the dynamic data structures in C?
What are the restrictions of a modulus operator?
How to reverse a string using a recursive function, with swapping?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
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,
List the difference between a While & Do While loops?
What are the data types present in c?
What is difference between far and near pointers?
Why is c not oop?
Why is this loop always executing once?
Do pointers store the address of value or the actual value of a variable?