New Programming Languages Interview Questions :: ALLInterview.com http://www.allinterview.com New Programming Languages Interview Questions en-us print ur name without using any semicolon in c/c++.... http://www.allinterview.com/showanswers/75591.html #include<stdio.h> #include<conio.h> void main() { int i; if(printf("vignesh s r ")) { i=1; } getch(); } how can i sort numbers from ascending order and descending order usin http://www.allinterview.com/showanswers/75539.html WAP TO ACCEPT STRING AND COUNT A COMES N TIMES B COMES N TIMES C COM http://www.allinterview.com/showanswers/75528.html this logic is for 'A'(capital) to 'z'(small)...... #include<stdio.h> #include<conio.h> void main() { int count; char str[100]; printf("enter the string :"); gets(str); for(int i=65;i<=122;i++ which types of data structure will i use to convert infix to post fix http://www.allinterview.com/showanswers/75527.html To convert the infix to postfix, STACK datastructure is used. some may think about tree but by we only denote the expression actual conversion is done through STACK. parkside&#039;s triangle.. create a program like this.. enter th http://www.allinterview.com/showanswers/75517.html super problem this is...... #include<stdio.h> #include<conio.h> void main() { int count ,m,n; printf("enter the size :"); scanf("%d",&m); printf("enter the seed :"); scanf("%d",&n the number 138 is called well ordered number because the three digits http://www.allinterview.com/showanswers/75516.html for (int i=1; i<8; i++) for (int j=i; j<9; j++) for (int k=j; k< 10; k++) printf("%d\n", i*100+j*10+k); a number is perfect if it is equal to the sum of its proper divisor.. http://www.allinterview.com/showanswers/75515.html a number whose only prime factors are 2,3,5, and 7 is call humble num http://www.allinterview.com/showanswers/75514.html What does &#039;\r&#039; and &#039;\b&#039; mean? Please explain with http://www.allinterview.com/showanswers/75512.html \r is used for carriage return and \b is used for computer baep Outline the two important features of a terminating recursion. A http://www.allinterview.com/showanswers/75461.html write the function int countchtr(char string[],int ch);which returns http://www.allinterview.com/showanswers/75438.html #include<stdio.h> #include<conio.h> int string(char *,char); void main() { char str[100],ch; int c; printf("enter the string :"); gets(str); printf("enter the character to be searched :"); scanf("5c" atoi, which takes a string and converts it to an integer. write a pr http://www.allinterview.com/showanswers/75435.html how to find out the reverse number of a digit if it is input through http://www.allinterview.com/showanswers/75409.html A SMALL IM IMPLEMENTATION OF POINTERS. #include<stdio.h> #include<conio.h> void main() { int n,*k,l; printf("enter the number :"); scanf("%d",&n); k=&n; for(int i=1;*k>0;i++) { l=(*k)%10; *k=(* HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT T http://www.allinterview.com/showanswers/75404.html #include<stdio.h> void main() { int n; printf("enter any number"); scanf("%d",&n); while(n>0) { a=n%10; n=n/10; pritnf("%d",a); } getch(); } What are the five tracing levels in System.Diagnostics.TraceSwitcher http://www.allinterview.com/showanswers/75384.html