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 |
What is omp_num_threads?
Do you know the difference between malloc() and calloc() function?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
how to execute a program using if else condition and the output should enter number and the number is odd only...
Why c is called free form language?
How is a structure member accessed?
What are the advantages of c preprocessor?
why division operator not work in case of float constant?
which one is highest Priority in c? a)=,b)+,c)++,d)==
Q-1: Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college.
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
4)What would be the output? main() { int num=425; pf("%d",pf("%d",num)); } a)Comp error b)4425 c)4253 d)3435 e)none