What are the modifiers available in c programming language?
What is the c value paradox and how is it explained?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
code for reverse alternate words from astring
#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?
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?
How do you write a program which produces its own source code as its output?
what is the basis for selection of arrays or pointers as data structure in a program
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
please explain every phase in the "SDLC" in the dotnet.
Explain what is meant by high-order and low-order bytes?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.