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...


without a terminator how can we print a message in a printf
() function.

Answers were Sorted based on User's Feedback



without a terminator how can we print a message in a printf () function...

Answer / vijay

#include<stdio.h>
main()
{
if(Printf("Here is the message without terminator"))
{
}
}

Is This Answer Correct ?    19 Yes 5 No

without a terminator how can we print a message in a printf () function...

Answer / dharmendra

we can make without using if,for,while statments.....

main()
{
fun(printf("\nCute Ramya !!!!!"));
}
fun(int i)
{
;;;;; i++
}

Is This Answer Correct ?    7 Yes 5 No

without a terminator how can we print a message in a printf () function...

Answer / lucky

#include<stdio.h>
void main()
{
if(printf("hello")==0)
{}
}

Is This Answer Correct ?    2 Yes 1 No

without a terminator how can we print a message in a printf () function...

Answer / indrani

#include<stdio.h>

void main()
{
fun(printf("\nCute Ramya !!!!!"));
}
fun(int i)
{
i++;
}

Is This Answer Correct ?    5 Yes 5 No

without a terminator how can we print a message in a printf () function...

Answer / dewanshu goel

#include<stdio.h>
main()
{
if(printf("the message is print without terminator"))
}

Is This Answer Correct ?    2 Yes 2 No

without a terminator how can we print a message in a printf () function...

Answer / guest

using if statement

Is This Answer Correct ?    1 Yes 1 No

without a terminator how can we print a message in a printf () function...

Answer / adesh

#include<stdio.h>
#include<conio.h>
main()
{
if("adesh")
{
}
}

Is This Answer Correct ?    7 Yes 10 No

Post New Answer

More C Interview Questions

void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }

3 Answers  


What are the advantages of using new operator as compared to the function malloc ()?

0 Answers   NIIT,


HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE

3 Answers   Wipro,


Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….

1 Answers  


how to get starting address of a running C program

3 Answers  


main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?

2 Answers  


write a program to convert a expression in polish notation (postfix) to inline (normal)

0 Answers   Siemens,


What is the meaning of c in c language?

0 Answers  


How arrays can be passed to a user defined function

0 Answers  


what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these

2 Answers   IBM,


Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?

1 Answers   Infosys,


Categories