What is echo in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Is array a primitive data type in c?
main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }
1 Answers Vector, Vector India,
Can a variable be both constant and volatile?
What are the storage classes in C?
why Language C is plateform dependent
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are the types of i/o functions?
What is the use of parallelize in spark?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
what does ‘#include’ mean?
What is the difference between new and malloc functions?