What's the difference between constant char *p and char * constant p?
No Answer is Posted For this Question
Be the First to Post Answer
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
what is a constant pointer in C
What is an example of enumeration?
can we have joblib in a proc ?
How do you initialize pointer variables?
How does the assert() function work?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
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.
c program to subtract between two numbers without using '-' sign and subtract function.
What is the Purpose of 'extern' keyword in a function declaration?
Explain how can I remove the trailing spaces from a string?