.find the output of the following program?
char*myfunc(char*ptr)
{
ptr +=3;
return (ptr);
}
int main()
{
char*x,*y;
x="HELLO";
y=myfunc(x);
printf("y = %s
",y);
return 0;
}
No Answer is Posted For this Question
Be the First to Post Answer
c programming of binary addition of two binary numbers
Can we change the value of #define in c?
How can you find out how much memory is available?
why do we use pointer instead directly acessing the data?
Explain bitwise shift operators?
What are the different types of C instructions?
How can I invoke another program or command and trap its output?
What are linker error?
What is the use of structure padding in c?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???