Explain how does flowchart help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any data type in c with variable size?
What ios diff. Between %e & %f?
What is the use of ?: Operator?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
What is a newline escape sequence?
what are the different storage classes in c?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
What's the difference between constant char *p and char * constant p?
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
write a c program to find the probability of random numbers between 1-1000