How do you search data in a data file using random access method?
No Answer is Posted For this Question
Be the First to Post Answer
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
explain how do you use macro?
what is differnence b/w macro & functions
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
How to write a program to receive an integer & find its octal equivalent by using for loop?
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
code for selection sort?
who invented c
12345 1234 123 12 1
What is malloc and calloc?
write a program without using main function?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?