what will be the output for the following program?
main()
{
char ch = 'k';
char c;
printf("%c",c);
}
Answers were Sorted based on User's Feedback
C program to find frequency of each character in a text file?
what is an inline function?
What is the difference between functions getch() and getche()?
What is the easiest sorting method to use?
How to create struct variables?
What is the difference between ‘g’ and “g” in C?
implement OR gate without using any bitwise operator.
How to add two numbers without using semicolon n c????
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
How do you write a program which produces its own source code as its output?
what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string
What is the difference between void main() and int main()?