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
What are the salient features of c languages?
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.
What are the disadvantages of external storage class?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
What are the types of data types and explain?
What is indirection?
Explain enumerated types in c language?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What is difference between far and near pointers?
Explain how do you list files in a directory?
Can we change the value of #define in c?
What is variable in c example?
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); }
What are the two forms of #include directive?