Explain what is the concatenation operator?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
How can I invoke another program or command and trap its output?
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............
Between macros and functions,which is better to use and why?
What type is sizeof?
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
what is diference between return 0 and return NULL??
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Is it possible to run using programming C for Java Application?
What is structure padding in c?
What does static mean in c?