What is the purpose of realloc()?
No Answer is Posted For this Question
Be the First to Post Answer
Explain indirection?
print the palindrome numbers in between 0 to n
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is const volatile variable in c?
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
Why c language?
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
In which area global, external variables are stored?
what is op? for(c=0;c=1000;c++) printf("%c",c);
What is the use of f in c?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0