write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / upendra
main()
{
if(printf("welcome"))
}
}
]
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Is c language still used?
Explain b+ tree?
write a proram to reverse the string using switch case?
Define circular linked list.
Explain how do you declare an array that will hold more than 64kb of data?
provide an example of the Group by clause, when would you use this clause
Explain pointer. What are function pointers in C?
Explain how can a program be made to print the name of a source file where an error occurs?
Explain enumerated types in c language?
Explain how to reverse singly link list.
What are operators in c?
Explain what is wrong in this statement?
Why we use stdio h in c?