main()
{
char *ptr = "Ramco Systems";
(*ptr)++;
printf("%s\n",ptr);
ptr++;
printf("%s\n",ptr);
}
Find the Outputs?
Answer Posted / lucky
samco system
amco system
| Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
how to build a exercise findig min number of e heap with list imlemented?
What are extern variables in c?
What is oops c?
What is the use of sizeof?
Can a variable be both const and volatile?
What is volatile variable in c?
What is bubble sort technique in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.
What is meant by inheritance?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is operator precedence?
How can you restore a redirected standard stream?