what will be the output for the following
main()
{
printf("hi" "hello");
}
Answers were Sorted based on User's Feedback
Answer / manishsoni
can any one tell me hows the answer is:
hihello
| Is This Answer Correct ? | 2 Yes | 0 No |
What is sizeof in c?
How can I implement sets or arrays of bits?
what is the use of c program?
4 Answers Synergy, Web Synergies,
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.
What is difference between array and structure in c?
Hai friends im a i year student. i want to develop my knowledge in the field of TSR in c. How I'm Improve ?
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
write program on arrays
who developed c and why he developed c?
What is the difference between memcpy and memmove?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,