Why do we use header files in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
no consistent academics. how to answer the question
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
Can we assign integer value to char in c?
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
what is the use of call back function in c?tell me with example
which is the best antivirus and how to update it
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above