int a=20;
int b=30;
int c=40;
printf("%d%d%d");
what will be the output?
Answer Posted / neethu
%d%d%d
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
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); }
what does static variable mean?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is the difference between memcpy and memmove?
What is return in c programming?
What is define directive?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
can any one tel me wt is the question pattern for NIC exam
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is a struct c#?
Explain what is the difference between functions abs() and fabs()?
What is a program flowchart and how does it help in writing a program?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is a stream?
Is return a keyword in c?