What are the 32 keywords in c?
No Answer is Posted For this Question
Be the First to Post Answer
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
int *p=20; if u print like dis printf("%d",p); o\p:- 20; how is it possible? plz give me the explanation.
What is the difference between formatted&unformatted i/o functions?
What are the differences between Structures and Arrays?
What are reserved words?
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
What is signed and unsigned?
What is c variable?
In which header file is the null macro defined?
What are formal parameters?
Can we access RAM? How? Whats the range of access? Similarly What are other hardware we can access?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.