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() { extern int i; i=20; printf("%d",sizeof(i)); }
Write a C program to print look and say sequence? For example if u get the input as 1 then the sequence is 11 21 1211 111221 312211 12112221 .......(it counts the no. of 1s,2s etc which is in successive order) and this sequence is used in run-length encoding.
void main() { unsigned giveit=-1; int gotit; printf("%u ",++giveit); printf("%u \n",gotit=--giveit); }
Develop a routine to reflect an object about an arbitrarily selected plane
What is the output for the program given below typedef enum errorType{warning, error, exception,}error; main() { error g1; g1=1; printf("%d",g1); }
how can i cast a char type array to an int type array
Design an implement of the inputs functions for event mode
how to return a multiple value from a function?
can you use proc sql to manpulate a data set or would u prefer to use proc report ? if so why ? make up an example and explain in detail
#define int char main() { int i=65; printf("sizeof(i)=%d",sizeof(i)); }
Is there any difference between the two declarations, 1. int foo(int *arr[]) and 2. int foo(int *arr[2])
main() { int i; float *pf; pf = (float *)&i; *pf = 100.00; printf("\n %d", i); } a. Runtime error. b. 100 c. Some Integer not 100 d. None of the above