Can the “if” function be used in comparing strings?
No Answer is Posted For this Question
Be the First to Post Answer
What is this pointer in c plus plus?
can a union be self-referenced?
What is a Deque?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
Why dont c comments nest?
How do you redirect a standard stream?
How can I get the current date or time of day in a c program?
What is getch?
How do I initialize a pointer to a function?
can anyone please tell me wat is backlogs... i was looking for the job openings where i read this.. eligibility criteria minimum 70% in degree without backlogs. is that arrear.. if so is it standing arrear or history of arrears... please help me...
11 Answers CTS, Indian Navy, L&T, Microsoft, SSB, TCE, TCS,
How to establish connection with oracle database software from c language?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }