Write a program in c to replace any vowel in a string with z?
No Answer is Posted For this Question
Be the First to Post Answer
can i know the source code for reversing a linked list with out using a temporary variable?
Can the curly brackets { } be used to enclose a single line of code?
what are the stoge class in C and tel the scope and life time of it?
What is the difference between union and structure in c?
Write a program to swap two numbers without using third variable in c?
say the following declaration is correct nr not. int b=a,n=0;
What are the different types of data structures in c?
What is alloca() and why is its use discouraged?
what is the hexidecimal number of 4100?
Write a program to print ASCII code for a given digit.
how to do in place reversal of a linked list(singly or doubly)?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20