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...


if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True"

a) Never

b) Always

c) When the value of i is 0

d) all of the above


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(“%d”,x); --x; } }

7 Answers   CSC,


Explain what does a function declared as pascal do differently?

0 Answers  


How can I prevent another program from modifying part of a file that I am modifying?

0 Answers  


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


what is the difference between #include<> and #include”…”?

5 Answers  


Write down the program to sort the array.

4 Answers   Impiger,


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  


What do you mean by dynamic memory allocation in c? What functions are used?

0 Answers  


C program to find all possible outcomes of a dice?

0 Answers  


Differentiate between #include<...> and #include '...'

0 Answers  


Can u return two values using return keyword? If yes, how? If no, why?

7 Answers  


consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none

7 Answers   TCS,


Categories