What the advantages of using Unions?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor

0 Answers  


a simple c program using 'for' loop to display the output 5 4 3 2 1

2 Answers   Google,


What is a pointer?

1 Answers   ADP, IFFCO,


Explain what is the most efficient way to store flag values?

0 Answers  


what is the height of tree if leaf node is at level 3. please explain

0 Answers  






#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?

6 Answers   Ramco,


What is the use of ?: Operator?

0 Answers  


Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon

0 Answers   HCL,


How do I round numbers?

0 Answers  


Prove or disprove P!=NP.

5 Answers   Microsoft,


how can i get this by using for loop? * ** * **** * ******

3 Answers   Excel,


Can you define which header file to include at compile time?

0 Answers   Aspire, Infogain,


Categories