main()
{
int k=1;
printf("%d==1 is ""%s",k,k==1?"TRUE":"FALSE");
}
Answer / susie
Answer :
1==1 is TRUE
Explanation:
When two strings are placed together (or separated by
white-space) they are concatenated (this is called as
"stringization" operation). So the string is as if it is
given as "%d==1 is %s". The conditional operator( ?: )
evaluates to "TRUE".
| Is This Answer Correct ? | 12 Yes | 1 No |
prog. to produce 1 2 3 4 5 6 7 8 9 10
# include<stdio.h> aaa() { printf("hi"); } bbb(){ printf("hello"); } ccc(){ printf("bye"); } main() { int (*ptr[3])(); ptr[0]=aaa; ptr[1]=bbb; ptr[2]=ccc; ptr[2](); }
can u give me the c codings for converting a string into the hexa decimal form......
Write a C program to add two numbers before the main function is called.
Extend the sutherland-hodgman clipping algorithm to clip three-dimensional planes against a regular paralleiepiped
Derive expression for converting RGB color parameters to HSV values
write a c program to input initial & final time in the format hh:mm and find the time intervel between them? Ex inputs are initial 06:30 final 00:05 and 23:22 final 22.30
main() { printf("%x",-1<<4); }
How to count a sum, when the numbers are read from stdin and stored into a structure?
Write a program that find and print how many odd numbers in a binary tree
code of a program in c language that ask a number and print its decremented and incremented number.. sample output: input number : 3 321123
void main() { if(~0 == (unsigned int)-1) printf(“You can answer this if you know how values are represented in memory”); }