Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
No Answer is Posted For this Question
Be the First to Post Answer
Is printf a keyword?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
Write a C function to search a number in the given list of numbers. donot use printf and scanf
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
how to find the largest element of array without using relational operater?
write an algorithm and a program to count the number of elements in a circularly singly linked list
What are integer variable, floating-point variable and character variable?
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
Can we assign integer value to char in c?
what is const volatile?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
what will happen if you free a pointer twice after allocating memory dynamically ?