Answer Posted / vidhya lakshmi d
#include<stdio.h>
void main()
{
printf("\"hai\"");
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Tell me what is the purpose of 'register' keyword in c language?
What are the usage of pointer in c?
Can we declare variable anywhere in c?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Explain the difference between malloc() and calloc() in c?
What are the rules for the identifier?
write a program to print largest number of each row of a 2D array
How can I insert or delete a line (or record) in the middle of a file?
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); }
Where we use clrscr in c?
Which is the best website to learn c programming?
What are the valid places to have keyword “break”?
What is size of union in c?
How can I write a function analogous to scanf?
What is dynamic dispatch in c++?