R
Q. What is the output of C program?
int main() { char str1[]="JAMES,"; char str2[15]="BOND "; strcat(str2,str1); printf("%s",str2); printf("%s",str1); }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which is the format specifier used to prefix 0x and print a number in hexadecimal notation?
Q. How many number of pointer (*) does C have against a pointer variable declaration?
Q. What will be the result of the following code snippet?
Q. What will be the output of the following C code?
Q. What is the output of the following C program?
Q. Which part of the program address space is p stored in the following C code?
Q. The worst case time complexity of AVL tree is better in comparison to binary search tree for
Q. Which command is to compile C code without linking using gcc compiler?
Discusssion
Login to discuss.