How many levels of pointers have?
Is fortran still used today?
What are the disadvantages of c language?
what is the maximum limit of row and column of a matrix in c programming. in linux .
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
Hai what is the different types of versions and their differences
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
what is the use of using linked list and array?
What is the difference between malloc calloc and realloc in c?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is the purpose of clrscr () printf () and getch ()?
What is return in c programming?