How to define structures? ·
No Answer is Posted For this Question
Be the First to Post Answer
. Explain the differences between fork() and exec() in C
What is boolean in c?
how we do lcm of two no using c simple if while or for statement
c program to subtract between two numbers without using '-' sign and subtract function.
Mention four important string handling functions in c languages .
Why is the code below functioning. According to me it MUST NOT.
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
number of times a digit is present in a number
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
program for following output using for loop? 1 2 3 4 5 2 3 4 5 3 4 5 4 5 5
What is the difference between GETS();AND SCANF();