What is meant by initialization and how we initialize a variable?
No Answer is Posted For this Question
Be the First to Post Answer
print a "hello" word without using printf n puts in c language
A C E G H +B D F A I ------------ E F G H D
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What are the characteristics of arrays in c?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
Why is c not oop?
What is Bitwise Operator and how it works?
What are keywords c?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.
Tell me can the size of an array be declared at runtime?
What is uint8 in c?