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

Answers were Sorted based on User's Feedback



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

Answer / chandrasekhar kar

yes u can use PRINTK , which doesn't need c library also.
But this answer is specific to linux.

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More C Interview Questions

what do structure language means?

3 Answers   Microsoft,


enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program

1 Answers  


Can we increase size of array in c?

0 Answers  


Function to find the given number is a power of 2 or not?

20 Answers   Motorola, nvidia,


#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks

9 Answers   Excel,






What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }

5 Answers   Amazon, Qualcomm,


what type of language is C?

13 Answers   Microsoft,


Why shouldn’t I start variable names with underscores?

0 Answers  


What are the various topologies? Which one is the most secure?

2 Answers  


Can you write the algorithm for Queue?

0 Answers   College School Exams Tests, TCS,


Can you tell me how to check whether a linked list is circular?

1 Answers  


Why static variable is used in c?

0 Answers  


Categories