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
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 |
How to write a C program to determine the smallest among three nos using conditional operator?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
write a program to sort the elements in a given array in c language
A MobileNumber is a VIP number if it satisfy the following conditions. The operator should be Vodafone. Atleast one 0 (Zero) should be exist in mobile number. The number should not end with 8. The single digit sum of all the digits in the number should be equal to 9. For example if the number is 9876543210, the sum is 9+8+7+...+1+0 = 45. Sum of 4+5 = 9. Write a method: private boolean isVIPMobileNumber(String mobileNum, String operator) mobileNum phone number operator mobile operator as bsnl, Vodafone
Write a program in c to replace any vowel in a string with z?
a program that can input number of records and can view it again the record
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.