Are there namespaces in c?
No Answer is Posted For this Question
Be the First to Post Answer
String concatenation
what is object oriental programing?
How do we declare variables in c?
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
What was noalias and what ever happened to it?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
What is double pointer in c?
How does free() know explain how much memory to release?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
Can we access array using pointer in c language?
code for bubble sort?