What is string concatenation in c?
No Answer is Posted For this Question
Be the First to Post Answer
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
Why the use of alloca() is discouraged?
What is the meaning of 2d in c?
What functions are in conio h?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
How can I open a file so that other programs can update it at the same time?
Why do we use int main instead of void main in c?
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Why do we use stdio h and conio h?
What are the different types of endless loops?
Explain Linker and Loader
Explain how can type-insensitive macros be created?