what is a function method?give example?
What is pointer & why it is used?
Find string palindrome 10marks
5 Answers Honeywell, Infosys, Riktam, Roland,
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
What are the phases in s/w developed life cycle? wat is the diff b/w stack & queue...where do we use stack
Define Spanning-Tree Protocol (STP)
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Why is c called c?
What is pragma in c?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif
Explain how does free() know explain how much memory to release?