What is the use of ?: Operator?
No Answer is Posted For this Question
Be the First to Post Answer
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
how to return 1000 variables from functio9n in c?plz give me code also
When should you not use a type cast?
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
Explain the advantages of using macro in c language?
can we print any string without using terminator?
program to locate string with in a string with using strstr function
logic for generating all the combinations of the any number of given letters. ex::::::::: if a,b,c,d are given the o/p should be abcd,dcba,dbac,bcad,................ 4*3*2*1 combinations............
Concat two string with most overlapped substring has to removeĀ "abcd"+ "cdef" = "abcdef
What does malloc () calloc () realloc () free () do?
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,
Is it better to use malloc() or calloc()?