c program to print a name without using semicolon
Answers were Sorted based on User's Feedback
Answer / jeke kumar gochhayat
#include<stdio.h>
void main()
{
if(printf("jeke kumar gochhayat"))
}
| Is This Answer Correct ? | 9 Yes | 5 No |
Answer / rajesh dixit
#include<stdio.h>
#include<coio.h>
void main()
{
if(printf("rajesh dixit"))
{
}
getch();
}
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / 080132
#include<stdio.h>
#include<conio.h>
void main{
if(printf("I am arafat from jstu")){
}
if(printf(" ")){
}
if(getch()){
}
}
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / nirbhay gupta
#define $ ;
main()
{
printf("i am Nirbhay Gupta")$
printf("right")$
}
| Is This Answer Correct ? | 5 Yes | 18 No |
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
What is the size of enum in bytes?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
Explain the Difference between the New and Malloc keyword.
What is define directive?
How can you be sure that a program follows the ANSI C standard?
What is the difference between array and linked list in c?
What is array of structure in c programming?
Explain modulus operator.
Differentiate between the = symbol and == symbol?
why ordinary variable store the later value not the initial
#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?