Posts

Project in C !!!

Image
  The wait is over here is the Complete project of c with presentation!! COMPLETE CODE COMPLETE PRESENTATION CLICK HERE FOR CODE project presentation here PROJECT Dox here The primary purpose was to create a user interface in which user can access the whole store virtually online. Our project covers whole aspects and purposes an online store should have from ordering a T-shirt to stock handling Project Selection was a consensus and creating an Online store seemed to be a good and competitive idea. Basic research included ideas from Daraz Shopping Mall, Our project consist of everything that the daraz online store had Project details and features everything discussed in the PowerPoint presentation. Extra features include real-time product id and order no assignment, checking of vague email and phone input, customer care. Project details and features everything discussed in the PowerPoint presentation. Extra features include real-time product id and order no assignment, checking of v...

C language All Assignments (Programming Fundamental)

Image
  All Codes Are Available All C codes Are Here!!! All algo Filling structure functions pointer logical where are they?? All codes are available for free just click on the link below!!! Codes are HERE!! NOTE! If you want any other code then do comment!. Don't forget to share this with your friends.

HOW TO MAKE A HOLLOW DIAMOND IN C.

Image
Here is the 1st algorithm in c language. if you want any algorithm or program to understand and want a source code then let me know in the comments and if you want a video on it then also let me know in the comments. HOW TO MAKE A HOLLOW DIAMOND IN C.                     this is your output!! here (rows) is taken by the user and you know from the shape that row are equal to columns (rows=columns) the first star is printed on half of the inputted rows that's why k=rows/2 but, if rows are even then subtract 1 to get the middle index i.e  if rows=6 then  k=(6-1)/2= 2.5 (but the compiler will ignore everything after the point because the datatype is int ). and if rows is odd then we don't have to subtract one. if ( i < totalrows / 2 ) it is for printing the above pattern  the diamond is 2d shape so nested loops are required. if ( j ==(( totalrows - 1 )/ 2 )+ i  ||  j ==(( totalrows - 1 )/ 2 )- i  )  for...