What is the use of linkage in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Why enum is used in c?
What is array in C
What is a far pointer in c?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
What is key word in c language?
Give me basis knowledge of c , c++...
Why doesnt the call scanf work?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What is sizeof int?
What are the differences between Structures and Arrays?
What is the use of function overloading in C?