Explain how can you check to see whether a symbol is defined?
No Answer is Posted For this Question
Be the First to Post Answer
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
for(;;) printf("C language") What is out put of above??
2 Answers Practical Viva Questions,
What is the difference between pure virtual function and virtual function?
How we can write a value to an address using macro..?
Define Array of pointers.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
Can you please explain the difference between strcpy() and memcpy() function?
How to write a C program to determine the smallest among three nos using conditional operator?
What is the c value paradox and how is it explained?
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
What are header files why are they important?
How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.