.main()
{
char *p = "hello world!";
p[0] = 'H';
printf("%s",p);
}
No Answer is Posted For this Question
Be the First to Post Answer
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.
an algorithem for the implementation of circular doubly linked list
Explain what is the advantage of a random access file?
what is the flow of execution in cprogram? ex:printf();,scanf();
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
What are file streams?
what is the difference between. system call and library function?
what is the mean of c languages.
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Explain the differences between public, protected, private and internal.
What is self-referential structure in c programming?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.