What is Lazy evaluation in C? Give an example.
find the output of the following program main() { int x=5, *p; p=&x; printf("%d",++*p); }
Is boolean a datatype in c?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
in iso what are the common technological language?
Explain the difference between malloc() and calloc() in c?
Bit swapping
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
What are the 32 keywords in c?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
List the variables are used for writing doubly linked list program.
How do I convert a string to all upper or lower case?