Write a program which returns the first non repetitive character in the string?
No Answer is Posted For this Question
Be the First to Post Answer
what are the languages used in c#?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What is a pointer and how it is initialized?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
what is the maximum limit of row and column of a matrix in c programming. in linux .
What does main () mean in c?
What is the return type of sizeof?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }