Is it better to use malloc() or calloc()?
No Answer is Posted For this Question
Be the First to Post Answer
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
What is null character in c?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
write a program in C to swap two variables
what is default constructor?
Explain low-order bytes.
4. main() { int c=- -2; printf("c=%d",c); }
write function to reverse char array ... without using second array
What is floating point constants?
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
difference of two no's with out using - operator