What are the 4 data types?
What is queue in c?
what is pointer?
What is the use of bit field?
What will happen when freeing memory twice
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?
What is the heap in c?
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
What do you understand by normalization of pointers?
What is the purpose of main( ) in c language?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
What is nested structure with example?
Explain how can I avoid the abort, retry, fail messages?