in C-programming language without using printf statement
can we get output r not ? if yes how and if no also how ?

Answer Posted / vignesh1988i

ya wit out using printf we can print.... using putchar,puts
functions etc.........

Is This Answer Correct ?    41 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the salient features of c languages?

717


 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

1823


What are the disadvantages of external storage class?

689


while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above

851


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

787






What are the types of data types and explain?

754


What is indirection?

750


Explain enumerated types in c language?

688


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

1020


What is difference between far and near pointers?

703


Explain how do you list files in a directory?

720


Can we change the value of #define in c?

672


What is variable in c example?

691


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1005


What are the two forms of #include directive?

737