Describe static function with its usage?


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

Post New Answer

More C Interview Questions

What is structure padding & expalain wid example what is bit wise structure?

1 Answers  


f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed

5 Answers  


What are the types of bitwise operator?

0 Answers  


main() { int a; a=++100; printf("%d",a); getch(); }

4 Answers  


How to write a code for reverse of string without using string functions?

0 Answers   TCS,






what is the difference between const volatile int i & volatile const int j;

2 Answers   HCL,


sir i got 146 correct question & i have also the advantage of height so will they consider my marks as 146+3=149.can any body tell me how they consider my height marks.

1 Answers  


In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.

0 Answers  


#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.

8 Answers   IBM,


What is %g in c?

0 Answers  


Write program to remove duplicate in an array?

0 Answers  


what is data structure

5 Answers   Maveric, TCS,


Categories