Explain Function Pointer?
What is unsigned int in c?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
How many levels of pointers have?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that
Is a pointer a kind of array?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What does void main () mean?
When can you use a pointer with a function?
what do you mean by enumeration constant?
how to compare two strings without using strcmp() function??