What are the 4 types of unions?
No Answer is Posted For this Question
Be the First to Post Answer
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
What will happen when freeing memory twice
What is use of pointer?
write a programme that inputs a number by user and gives its multiplication table.
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
write c program without semicolon
11 Answers MindTech, TCS, Wipro,
write a program to count the no of repaeted words in a line?
Who is the founder of c language?
HOW TO SWAP TWO NOS IN ONE STEP?
convert 12345 to 54321 withoutusing strig
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?