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
Is c an object oriented programming language?
What is the difference between arrays and pointers?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Explain 'far' and 'near' pointers in c.
What is a pointer and how it is initialized?
What are c header files?
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
How can I find out how much memory is available?
How variables are declared in c?
How can you avoid including a header more than once?