What is the code in while loop that returns the output of given code?
No Answer is Posted For this Question
Be the First to Post Answer
What is New modifiers?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What is calloc in c?
Is this program statement valid? INT = 10.50;
Binary tree traversing
What is the use of printf() and scanf() functions?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
What is the difference between a string and an array?
1. Write a program to reverse every second word in a given sentence.
what is ram?
main() { int a; a=++100; printf("%d",a); getch(); }
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??