.main()
{
char *p = "hello world!";
p[0] = 'H';
printf("%s",p);
}
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is wrong with this program statement?
Why do we use return in c?
What is function prototype in c language?
how to compare two strings without using strcmp() function??
What are multibyte characters?
why return type of main is not necessary in linux
What is const and volatile in c?
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
wite a programme in c to linear search a data using flag and without using flags?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
What is sparse file?