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 |
To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']
main() { struct student { char name[30]; struct date dob; }stud; struct date { int day,month,year; }; scanf("%s%d%d%d", stud.rollno, &student.dob.day, &student.dob.month, &student.dob.year); }
main() { static char names[5][20]={"pascal","ada","cobol","fortran","perl"}; int i; char *t; t=names[3]; names[3]=names[4]; names[4]=t; for (i=0;i<=4;i++) printf("%s",names[i]); }
What is full form of PEPSI
write a program to Insert in a sorted list
Write a program to model an exploding firecracker in the xy plane using a particle system
#include<stdio.h> main() { int a[2][2][2] = { {10,2,3,4}, {5,6,7,8} }; int *p,*q; p=&a[2][2][2]; *q=***a; printf("%d----%d",*p,*q); }
What is wrong with the following code? int *foo() { int *s = malloc(sizeof(int)100); assert(s != NULL); return s; }
what will be the position of the file marker? a: fseek(ptr,0,SEEK_SET); b: fseek(ptr,0,SEEK_CUR);
How to return multiple values from a function?
main() { char *p = "hello world"; p[0] = 'H'; printf("%s", p); } a. Runtime error. b. “Hello world” c. Compile error d. “hello world”
Print an integer using only putchar. Try doing it without using extra storage.