What is the difference between void main() and void main (void) give example programme?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
1 1 2 1 2 3 1 2 3 4 1 2 3 1 2 1 generate this output using for loop
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is the proper way of these job Tell me about there full work
What is undefined behavior?
What is a program flowchart?
is it possible to change the default calling convention in c ?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
what is void pointer?
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
how would a 4*3 array A[4][3] stored in Row Major Order?