What is wrong with this initialization?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
Differentiate between full, complete & perfect binary trees.
What is %d called in c?
What is the collection of communication lines and routers called?
Which of these functions is safer to use : fgets(), gets()? Why?
Write a program in C to convert date displayed in gregorian to julian date
Taking an example,differentiate b/w loader and linker ?
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 1. Print only the alphabets . If in upper case print in lower case vice versa.