Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



Programming Code Interview Questions
Questions Answers Views Company eMail

void main() { char ch; for(ch=0;ch<=127;ch++) printf(“%c %d \n“, ch, ch); }

1 12337

Is this code legal? int *ptr; ptr = (int *) 0x400;

1 8474

main() { char a[4]="HELLO"; printf("%s",a); }

CSC,

3 12348

main() { int a=10,*j; void *k; j=k=&a; j++; k++; printf("\n %u %u ",j,k); }

1 14239

main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i;

1 8723

Printf can be implemented by using __________ list.

3 11800

char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }

1 7773

char *someFun1() { char temp[ ] = “string"; return temp; } char *someFun2() { char temp[ ] = {‘s’, ‘t’,’r’,’i’,’n’,’g’}; return temp; } int main() { puts(someFun1()); puts(someFun2()); }

2 10345

main() { char a[4]="HELL"; printf("%s",a); }

Wipro,

3 11177

what mean void creat_object?in public class in this code class A{ public: int x; A(){ cout << endl<< "Constructor A";} ~A(){ cout << endl<< "Destructor A, x is\t"<< x;} }; void create_object(); void main() { A a; a.x=10; { A c; c.x=20; } create_object(); } void create_object() { A b; b.x=30; }

2597

How we print the table of 2 using for loop in c programing?

HCL, Wipro,

14 105121

How we print the table of 3 using for loop in c programing?

7 13089

what is the use of using for loop as "for(;;)"?

Satyam,

5 8988

How to count a sum, when the numbers are read from stdin and stored into a structure?

1 4663

how many processes will gate created execution of -------- fork(); fork(); fork(); -------- Please Explain... Thanks in advance..!

GATE,

8 25113


Un-Answered Questions { Programming Code }

write a program to perform generic sort in arrays?

3080


an on-line examination application using html jsp servlet and jdbc. including session management and cookies

4880


write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used

4866


How to Split Strings with Regex in Managed C++ Applications?

3683


Write a program to model an exploding firecracker in the xy plane using a particle system

4152


How to get Filename from Path?

554


Code for Searching for Multiple Matches with the MatchCollection Class?

3452


What is full form of PEPSI

2431


can you please write a program for deadlock that can detect deadlock and to prevent deadlock.

3239


how to diplay a external image of output on winxp by using c & c++,

3464


How to Check if Folder Exists?

572


write a program using 2 D that searches a number and display the number of items 12 inputs values input 15,20, 13, 30, 38, 40,16, 18, 20 ,18 ,20 enter no. to search : 20

3815


Code for Method of Handling Factorials of Any Size?

2491


how to test the orientation of the layout in android.to note any changes in the ui design when change orientation

2943


Write a program to convert postfix expression to infix expression.

4577