What is the output of below code?
main() { static int a=5; printf("%3d",a--); if(a) main(); }
How does variable declaration affect memory?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
What is the most efficient way to count the number of bits which are set in a value?
Which header file is essential for using strcmp function?
What does sizeof function do?
What does the characters “r” and “w” mean when writing programs that will make use of files?
writw a program to insert an element in the begning of a doubly linked list
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
What's the best way to declare and define global variables?
Explain what does a function declared as pascal do differently?
What is a good data structure to use for storing lines of text?
Is int a keyword in c?