the number of measuring units from a arbitrary starting point in a record area or control block to some other point
a) branching
b) recording pointer
c) none
d) offset
No Answer is Posted For this Question
Be the First to Post Answer
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
c program for searching a student details among 10 student details
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
what does " calloc" do?
How can I open files mentioned on the command line, and parse option flags?
What is a good way to implement complex numbers in c?
can we store values and addresses in the same array? explain
what are bps & baud rates? differentiate these two?
How to removing white spces in c programming only bu using loops