How to add two numbers without using semicolon at runtime
Answers were Sorted based on User's Feedback
Answer / myfriend_shankar
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("9+1= %d ",9+1))
{}
}
| Is This Answer Correct ? | 15 Yes | 4 No |
Answer / snehal sawant
#include<stdio.h>
void main()
{
while(!printf("11+20= %d ",11+20))
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
What is c token?
What does the c in ctime mean?
what is c programming?
In a byte, what is the maximum decimal number that you can accommodate?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
Describe the order of precedence with regards to operators in C.
Can U write a C-program to print the size of a data type without using the sizeof() operator? Explain how it works inside ?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
C program to perform stack operation using singly linked list
Explain what is the benefit of using const for declaring constants?
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 Answers Motorola, TCS, Wipro,