how logic is used


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

Post New Answer

More C Interview Questions

How can I return multiple values from a function?

6 Answers  


Difference between null pointer and dangling pointer?

7 Answers   GE, Wipro,


What is the difference between c and python?

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 will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }

3 Answers   HCL,






What is a union?

0 Answers  


with out using main how to execute the program?

2 Answers  


find largest element in array w/o using sorting techniques.

3 Answers   Zycus Infotech,


List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.

0 Answers   Ignou,


Write a program to show the workingof auto variable.

2 Answers   Infotech,


In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT

1 Answers   IBM,


why division operator not work in case of float constant?

2 Answers  


Categories