What is bash c?


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

Post New Answer

More C Interview Questions

Which is best linux os?

0 Answers  


Can we declare function inside main?

0 Answers  


What is static identifier?

0 Answers   TCS,


WHAT IS PRE POSSESSORS?

6 Answers   TATA,


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

0 Answers  






if a five digit number is input through the keyboard, write a program to calculate the sum of its digits. (hint:-use the modulus operator.'%')

23 Answers  


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

0 Answers  


What is difference between array and structure in c?

0 Answers  


Write a simple program to find the size of different basic data types in C.

3 Answers  


How do you determine whether to use a stream function or a low-level function?

0 Answers  


What is the advantage of an array over individual variables?

0 Answers  


#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

0 Answers  


Categories