Without using main fn and semicolon,print remainder for a
given number in C language
Answers were Sorted based on User's Feedback
Answer / ronak pareel
it is easy but you want to use main function
#include<stdio.h>
main()
{
if(printf("
%d",11%10))
}
// In this code at the place of 11 you can write your no
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / swamy
we can not print any number with out using main function
and semicolon.
I think
| Is This Answer Correct ? | 0 Yes | 5 No |
When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these
write an algorithm and a program to count the number of elements in a circularly singly linked list
Explain how can you determine the size of an allocated portion of memory?
What ios diff. Between %e & %f?
What is the main differences between C and Embedded C?
Explain what is operator promotion?
what are the interview question's in the language c
write a program to generate address labels using structures?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Why doesn't C support function overloading?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.