write c program without semicolon
Answers were Sorted based on User's Feedback
Answer / rockabhi
int main()
{
if (printf(" d" Hello"))
{
// EMPTY
}
}
| Is This Answer Correct ? | 38 Yes | 11 No |
Answer / s.venmathi
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("HELLO"))
{
}
}
| Is This Answer Correct ? | 20 Yes | 0 No |
Answer / ramya
main
{
if(printf("%d %d %d",10,010,0x0))
{
}
}
o/p:10,8,16
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / saurabh rakhecha
int main()
{
if (printf(" Hello"))
{
// EMPTY
}
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / saranya
#include<iostream.h>
#include<conio.h>
int main()
(
if(printf("welcome"))
}
| Is This Answer Correct ? | 9 Yes | 7 No |
Answer / ramya
#include<stdio.h>
void main()
{
if(printf("sum=%d",(10+20))
{
}
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / anu
#include<stdio.h>
#include<conio.h>
#define SEMICOLON ;
void main()
{
printf("hELLO") SEMICOLON
getch() SEMICOLON
}
| Is This Answer Correct ? | 0 Yes | 3 No |
What is clrscr in c?
Write a program to find the given number is odd or even without using any loops(if,for,do,while)
How can we allocate array or structure bigger than 64kb?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
How can you call a function, given its name as a string?
What is the meaning of int *x[]();?
Explain b+ tree?
What is the purpose of ftell?
write a program to display the numbers having digit 9 in the given range from 1 to 100
How do I initialize a pointer to a function?
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
write a program that explain #define and # undef directive