Suggesting that there can be 62 seconds in a minute?
No Answer is Posted For this Question
Be the First to Post Answer
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
Why doesnt long int work?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
to find the program of matrix multiplication using arrays
How can I prevent another program from modifying part of a file that I am modifying?
Why & is used in scanf in c?
What are the 3 types of structures?
Difference between null pointer and dangling pointer?
What is the difference between the local variable and global variable in c?
write a program to arrange the contents of a 1D array in ascending order
write a c program to find biggest of 3 number without relational operator?
Name the language in which the compiler of "c" in written?