Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


c program to print a name without using semicolon

Answers were Sorted based on User's Feedback



c program to print a name without using semicolon ..

Answer / amehga

main()
{
if(printf("AMEGHA"))
{
}
}

Is This Answer Correct ?    56 Yes 5 No

c program to print a name without using semicolon ..

Answer / amegha

main()
{
if(printf("AMEGHA")
{
}
}

Is This Answer Correct ?    36 Yes 17 No

c program to print a name without using semicolon ..

Answer / s

main()
{
if(printf("SIVAN RAJA C"))
{
}
}

Is This Answer Correct ?    19 Yes 4 No

c program to print a name without using semicolon ..

Answer / satya

main()
{
if(printf("SATYA"))
{
}
}

Is This Answer Correct ?    8 Yes 3 No

c program to print a name without using semicolon ..

Answer / jeke kumar gochhayat

#include<stdio.h>
void main()
{
if(printf("jeke kumar gochhayat"))
}

Is This Answer Correct ?    9 Yes 5 No

c program to print a name without using semicolon ..

Answer / rajesh dixit

#include<stdio.h>
#include<coio.h>
void main()
{
if(printf("rajesh dixit"))
{
}
getch();
}

Is This Answer Correct ?    6 Yes 2 No

c program to print a name without using semicolon ..

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

c program to print a name without using semicolon ..

Answer / subash

main()
{
if(printf("SATYA"))
{
}
}

Is This Answer Correct ?    0 Yes 1 No

c program to print a name without using semicolon ..

Answer / nirbhay gupta

#define $ ;
main()
{
printf("i am Nirbhay Gupta")$
printf("right")$
}

Is This Answer Correct ?    5 Yes 18 No

Post New Answer

More C Interview Questions

What is the advantage of using #define to declare a constant?

0 Answers   Agilent, ZS Associates,


What is the size of enum in bytes?

0 Answers  


int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);

6 Answers   HCL, Octal, SW,


Explain the Difference between the New and Malloc keyword.

0 Answers   InterGraph,


What is define directive?

0 Answers  


How can you be sure that a program follows the ANSI C standard?

0 Answers   Aspire, Infogain,


What is the difference between array and linked list in c?

0 Answers  


What is array of structure in c programming?

0 Answers  


Explain modulus operator.

0 Answers  


Differentiate between the = symbol and == symbol?

0 Answers  


why ordinary variable store the later value not the initial

1 Answers  


#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?

5 Answers   Ramco,


Categories