How #define works?
No Answer is Posted For this Question
Be the First to Post Answer
write an algorithm to get a sentence and reverse it in the following format: input : I am here opuput: Here Am I note: first letter of every word is capiatlised
prototype of sine function.
what is the output of printf("%d",(scanf("%d",10));
wat s the meaning of (int *)p +4;
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
What is Lazy evaluation in C? Give an example.
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).
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
What is the output of printf("%d", printf("Hello"));?
main() { int i=5; printf("%d%d%d%d",i++,i--,i); }
how to construct a simulator keeping the logical boolean gates in c