in C-programming language without using printf statement
can we get output r not ? if yes how and if no also how ?
Answer Posted / shreya jha
it's possible to print something using if and without semicolon(;)
#include<stdio.h>
#include<conio.h>
int main()
{
if(printf("HELLO USER"))
{
}
getch();
return 0;
}
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is abstract data structure in c?
why wipro wase
Why isnt any of this standardized in c?
What is the difference between scanf and fscanf?
Explain how can I convert a number to a string?
Who is the founder of c language?
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
What is difference between far and near pointers?
What is bubble sort in c?
what is reason of your company position's in india no. 1.
What is the meaning of typedef struct in c?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
write a program to print largest number of each row of a 2D array
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.