What are the types of data files?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between constant pointer and pointer to a constant.
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
how can make variable not in registers
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
write a program to convert a expression in polish notation (postfix) to inline (normal)
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
array of pointer pointer to array pointer to pointer
What is c token?
How many types of functions are there in c?
Difference between pass by reference and pass by value?