What is the explanation for prototype function in c?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
What are the types of macro formats?
What is wrong with this program statement? void = 10;
How do you redirect a standard stream?
What is a void * in c?
Define function pointers?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
What do you mean by dynamic memory allocation in c?
What is main return c?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers