What are derived data types in c?
No Answer is Posted For this Question
Be the First to Post Answer
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(“%d” ,a[i]); }
Tell about strtok & strstr functions
2 Answers HCL, iFlex, Motorola,
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
1. Write the function int countchtr(char string[ ], int ch); which returns the number of times the character ch appears in the string. Example, the call countchtr(“She lives in NEWYORK”, ‘e’) would return 3.
Explain how can a program be made to print the name of a source file where an error occurs?
What is the basic structure of c?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
List some applications of c programming language?
Why is #define used?
what is the difference between procedure oriented and object oriented progaming language