What are the modifiers available in c programming language?


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

Post New Answer

More C Interview Questions

What is the c value paradox and how is it explained?

0 Answers  


value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?

6 Answers   Google,


code for reverse alternate words from astring

1 Answers   IBM,


#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?

3 Answers  


25. It takes five minutes to pass a rumour from one person to two other persons. The tree of rumour continues. Find how many minutes does it take spread the rumour to 768 persons. ?

11 Answers   CTS, TCS,


Explain bit masking in c?

0 Answers  


How do you write a program which produces its own source code as its output?

2 Answers  


what is the basis for selection of arrays or pointers as data structure in a program

0 Answers   TCS,


What character terminates all strings composed of character arrays? 1) 0 2) . 3) END

3 Answers  


please explain every phase in the "SDLC" in the dotnet.

0 Answers  


Explain what is meant by high-order and low-order bytes?

0 Answers  


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

0 Answers  


Categories