What is the use of getchar functions?
No Answer is Posted For this Question
Be the First to Post Answer
What is volatile
What do you mean by c?
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??
Is c programming hard?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
.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; }
Give the Output : * * * * * * * * * *
Why enum is used in c?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
write a program that accepts 3 numbers from the user. dispaly the values in a descending order.
wt is diference between int and int pointer as same as float and float pointer and char and char pointer