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 |
Give a oneline C expression to test whether a number is a power of 2?
25 Answers EA Electronic Arts, Google, Motorola,
char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }
#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); }
write a program in c language to get the value of arroy keys pressed and display the message which arrow key is pressed?
main() { char c; int i = 456; clrscr(); c = i; printf("%d", c); } a. 456 b. -456 c. random number d. none of the above
Write a routine to implement the polymarker function
main(int argc, char **argv) { printf("enter the character"); getchar(); sum(argv[1],argv[2]); } sum(num1,num2) int num1,num2; { return num1+num2; }
PROG. TO PRODUCE 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
main() { char p[ ]="%d\n"; p[1] = 'c'; printf(p,65); }
source code for delete data in array for c
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it.
Write a C program to add two numbers before the main function is called.