What's the total generic pointer type?
No Answer is Posted For this Question
Be the First to Post Answer
Tell me what is the purpose of 'register' keyword in c language?
What is the correct code to have following output in c using nested for loop?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)
What are type modifiers in c?
what is the difference between char * const and const char *?
What are valid signatures for the Main function?
When was c language developed?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
What is spaghetti programming?
What is pointer to pointer in c?
difference of two no's with out using - operator