What is the advantage of a random access file?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how do you list a file’s date and time?
Why isnt any of this standardized in c?
#include<string.h> void main() { String s1[]={"swathi"}; string s2[]={"maddimsetti"}; s1[]=s[]; printf("%s",s1[]); }
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
the maximum value that an integer constant can have is a) -32767 b) 32767 c) 1.701e+38 d) -1.7014e+38
How can I access memory located at a certain address?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is this pointer in c plus plus?
Where are local variables stored in c?
What are linker error?
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }