What are multibyte characters?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between static and global variable in c?
Write a C program that reads a series of strings and prints only those ending in "ed"
If fflush wont work, what can I use to flush input?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
0 Answers Amdocs, Apps Associates,
What's wrong with "char *p = malloc(10);" ?
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
how to capitalise first letter of each word in a given string?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
main difference between c and c++ language
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above