main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
Find the Outputs?
Post New Answer View All Answers
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Describe explain how arrays can be passed to a user defined function
Explain bitwise shift operators?
Why do we need arrays in c?
What does node * mean?
What is int main () in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Explain what’s a signal? Explain what do I use signals for?
What is ponter?
How do we print only part of a string in c?
How can a string be converted to a number?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What are the advantage of c language?