What is sizeof c?
No Answer is Posted For this Question
Be the First to Post Answer
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is a scope resolution operator in c?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
What is ambagious result in C? explain with an example.
When is a void pointer used?
Compare array data type to pointer data type
How is a pointer variable declared?
What is the use of structure padding in c?
c program to input values in a table(using 2D array) and print odd numbers from them
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
How can I list all of the predefined identifiers?