When would you use a pointer to a function?
What is a shell structure examples?
What is the output of the program #include<stdio.h> #include<conio.h> void main() {0 int i,j=20; clrscr(); for(i=1;i<3;i++) { printf("%d,",i); continue; printf("%d",j); break; } getch(); }
What is the difference between constant pointer and pointer to a constant. Give examples.
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.
write a program to find the largest and second largest integer from an array
Explain what standard functions are available to manipulate strings?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What are data types in c language?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }