What does the && operator do in a program code?
write a program to print largest number of each row of a 2D array
What is the best way to comment out a section of code that contains comments?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is switch in c?
can anyone please tell about the nested interrupts?
Difference between Function to pointer and pointer to function
How many types of arrays are there in c?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What do you mean by keywords in c?
What is union and structure?
What does static variable mean in c?
What is the size of structure pointer in c?
What does the function toupper() do?