respected sir, i did my MCA in 2013 when i am going to attend
to an interview i was asked about my project how will i
explain my project could please help me in this and my project
title is "Social Networking Site For Social Responsibility"
Answer / kar4u
Starting with your project name...
then team size
duration of project
then explain about project..
like wat are the benfits of your topic(project)
&&& so...
| Is This Answer Correct ? | 4 Yes | 0 No |
main() { int i = 257; int *iPtr = &i; printf("%d %d", *((char*)iPtr), *((char*)iPtr+1) ); }
Display the time of the system and display the right time of the other country
main() { int x=5; clrscr(); for(;x<= 0;x--) { printf("x=%d ", x--); } } a. 5, 3, 1 b. 5, 2, 1, c. 5, 3, 1, -1, 3 d. –3, -1, 1, 3, 5
void main() { while(1){ if(printf("%d",printf("%d"))) break; else continue; } }
main( ) { void *vp; char ch = ‘g’, *cp = “goofy”; int j = 20; vp = &ch; printf(“%c”, *(char *)vp); vp = &j; printf(“%d”,*(int *)vp); vp = cp; printf(“%s”,(char *)vp + 3); }
What are the files which are automatically opened when a C file is executed?
plz send me all data structure related programs
void main() { int i=i++,j=j++,k=k++; printf(“%d%d%d”,i,j,k); }
Finding a number which was log of base 2
Find the largest number in a binary tree
plz send me all data structure related programs
main() { int i, j; scanf("%d %d"+scanf("%d %d", &i, &j)); printf("%d %d", i, j); } a. Runtime error. b. 0, 0 c. Compile error d. the first two values entered by the user