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 the use of keyword VOLATILE in C?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Write a program with dynamically allocation of variable.
What is the code in while loop that returns the output of given code?
How does selection sort work in c?
Explain setjmp()?
What is the use of #include in c?
Program to find larger of the two numbers without using if-else,while,for,switch
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0