List the difference between a "copy constructor" and a "assignment operator"?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
What is undefined behavior?
How can I implement a delay, or time a users response, with sub-second resolution?
Differentiate between declaring a variable and defining a variable?
How can I invoke another program from within a C program?
What is the difference between %d and %i?
difference between Low, Middle, High Level languages in c ?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Was 2000 a leap year?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
C language questions for civil engineering
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); }