Why do we use & in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is the size of structure pointer in c?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
how logic is used
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
Explain how are portions of a program disabled in demo versions?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is array within structure?
Explain what are the different data types in c?