What is keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Is c is a procedural language?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
Write a program to print all permutations of a given string.
WHAT IS MEANT BY LIFE?
write a program to check whether a number is Peterson or not.
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.
What are the types of macro formats?
A stack can be implemented only using array?if not what is used?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }