What are enums in c?
No Answer is Posted For this Question
Be the First to Post Answer
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 out few of the applications that make use of Multilinked Structures?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Why & is used in scanf in c?
Why c language?
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?
please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Write a routine that prints out a 2-D array in spiral order!
Can i use “int” data type to store the value 32768? Why?
Should a function contain a return statement if it does not return a value?
What is the use of ?