If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
No Answer is Posted For this Question
Be the First to Post Answer
A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What is the difference between void main() and int main()?
Write a program to print a (*)pattern programming (A to Z) in capital in one programming ?
Can you think of a way when a program crashed before reaching main? If yes how?
Define recursion in c.
Where define directive used?
What is a pointer in c?
Can you assign a different address to an array tag?
What is the g value paradox?