What are local static variables?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?
What is Bitwise Operator and how it works?
write a program of bubble sort using pointer?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is the diffences between Windows XP and Windows Visa
Explain the difference between structs and unions in c?
What are the types of functions in c?
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
How can my program discover the complete pathname to the executable from which it was invoked?
Explain the Difference between the New and Malloc keyword.