What are the advantages of the functions?


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

Post New Answer

More C Interview Questions

What are types of preprocessor in c?

0 Answers  


SRUCTURE PROGRAMMING

3 Answers   CTS, Wipro,


How can you return multiple values from a function?

0 Answers  


show how link list can be used to repersent the following polynomial i) 5x+2

0 Answers   CBSE,


What do you mean by invalid pointer arithmetic?

0 Answers  






regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression

1 Answers   TCS,


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

0 Answers   Wilco,


Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"

0 Answers  


what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 Answers  


When can a far pointer be used?

0 Answers  


char ch="{'H','I',0};printf("%s",ch);what is output

9 Answers   Accenture,


main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }

2 Answers  


Categories