‎How to define structures? · ‎


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

Post New Answer

More C Interview Questions

Why C language is a procedural language?

0 Answers   Ericsson,


How can I call a function, given its name as a string?

4 Answers   ABC Telecom,


Explain 'far' and 'near' pointers in c.

0 Answers  


a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none

0 Answers  


how can i get output the following... 5 4 3 2 1 4 3 2 1 3 2 1 2 1 1 and 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 plz plz...

3 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,


Program to find largest of three numbers without using comparsion operator?

3 Answers  


Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986

2 Answers  


What is the difference between constant pointer and constant variable?

0 Answers   NIIT,


program to locate string with in a string with using strstr function

2 Answers   Huawei, Shreyas,


What is the difference between procedural and declarative language?

0 Answers  


general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only

0 Answers  


Categories